Update app.py
Browse files
app.py
CHANGED
@@ -27,16 +27,16 @@ def load_answer(question):
|
|
27 |
|
28 |
|
29 |
#App UI starts here
|
30 |
-
st.set_page_config(page_title="
|
31 |
-
st.header("
|
32 |
|
33 |
#Gets the user input
|
34 |
def get_text():
|
35 |
-
input_text = st.text_input("You:", "
|
36 |
if input_text.isalpha():
|
37 |
st.write(text, 'string', )
|
38 |
else:
|
39 |
-
st.write('Please type in a string ')
|
40 |
return input_text
|
41 |
|
42 |
user_input=get_text()
|
|
|
27 |
|
28 |
|
29 |
#App UI starts here
|
30 |
+
st.set_page_config(page_title="Somesh LangChain Demo", page_icon=":robot:")
|
31 |
+
st.header("Somesh LangChain Demo")
|
32 |
|
33 |
#Gets the user input
|
34 |
def get_text():
|
35 |
+
input_text = st.text_input("You:", "Pls Write Your Question.......")
|
36 |
if input_text.isalpha():
|
37 |
st.write(text, 'string', )
|
38 |
else:
|
39 |
+
st.write('Please type in a string Only')
|
40 |
return input_text
|
41 |
|
42 |
user_input=get_text()
|