shlrley commited on
Commit
50d6e02
β€’
1 Parent(s): 8bfa35a

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -23,7 +23,10 @@ def get_openai_response(question):
23
 
24
  ################################## Initialize streamlit app
25
  st.set_page_config(page_title="Q&A Demo")
26
- st.header("Langchain Application")
 
 
 
27
 
28
  # create a variable for the input
29
  input = st.text_input("Ask a question: ", key="input")
 
23
 
24
  ################################## Initialize streamlit app
25
  st.set_page_config(page_title="Q&A Demo")
26
+ st.header("Simple Q and A πŸ’¬")
27
+ st.caption("This question and answer application utilizes large language models (LLMs) from the Langchain library. This app is for fun, and not necessarily an accurate source of information.")
28
+ st.caption("⏳ After submitting, please allow for a few seconds for your answer to load.")
29
+ st.caption("🌐 Examples: \"What is the capital of Canada?\", \"How big is Earth?\", \"Do dolphins have self-awareness?\"")
30
 
31
  # create a variable for the input
32
  input = st.text_input("Ask a question: ", key="input")