eagle0504 commited on
Commit
46e7bbc
1 Parent(s): b0e5414

homepage updated

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -30,11 +30,6 @@ def run():
30
  """
31
  )
32
 
33
- with st.expander("Please expand/collapse to chat with an AI advisor:"):
34
- user_question = st.text_input('Enter a question:', 'What does the company NVIDIA do?')
35
- ai_answer = run_langchain_agent_(question=user_question)
36
- st.markdown(ai_answer)
37
-
38
  st.markdown(
39
  """
40
  ## Usage
@@ -124,6 +119,11 @@ def run():
124
  """
125
  )
126
 
 
 
 
 
 
127
 
128
  if __name__ == "__main__":
129
  run()
 
30
  """
31
  )
32
 
 
 
 
 
 
33
  st.markdown(
34
  """
35
  ## Usage
 
119
  """
120
  )
121
 
122
+ with st.expander("Please expand/collapse to chat with an AI advisor:"):
123
+ user_question = st.text_input('Enter a question:', 'What does the company NVIDIA do?')
124
+ ai_answer = run_langchain_agent_(question=user_question)
125
+ st.markdown(ai_answer)
126
+
127
 
128
  if __name__ == "__main__":
129
  run()