suzall commited on
Commit
e1aacba
·
verified ·
1 Parent(s): 55ca6b0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,8 +18,8 @@ st.header("LangChain Demo")
18
 
19
  input_text = st.text_input("You: ")
20
 
21
- user_input=get_text()
22
- response = load_answer(user_input)
23
 
24
  submit = st.button('Generate')
25
 
 
18
 
19
  input_text = st.text_input("You: ")
20
 
21
+
22
+ response = load_answer(input_text)
23
 
24
  submit = st.button('Generate')
25