vinhnx90 commited on
Commit
a499b16
1 Parent(s): b58bdc2

Show header for now

Browse files
Files changed (1) hide show
  1. app.py +7 -5
app.py CHANGED
@@ -14,15 +14,17 @@ st.set_page_config(
14
  menu_items={
15
  "Get Help": "https://x.com/vinhnx",
16
  "Report a bug": "https://github.com/vinhnx/InkChatGPT/issues",
17
- "About": "InkChatGPT is a Streamlit application that allows users to upload PDF documents and engage in a conversational Q&A with a language model (LLM) based on the content of those documents.",
 
 
18
  },
19
  )
20
 
21
  # Hide Header
22
- st.markdown(
23
- """<style>.stApp [data-testid="stToolbar"]{display:none;}</style>""",
24
- unsafe_allow_html=True,
25
- )
26
 
27
  # Setup memory for contextual conversation
28
  msgs = StreamlitChatMessageHistory()
 
14
  menu_items={
15
  "Get Help": "https://x.com/vinhnx",
16
  "Report a bug": "https://github.com/vinhnx/InkChatGPT/issues",
17
+ "About": """InkChatGPT is a simple Retrieval Augmented Generation (RAG) application that allows users to upload PDF documents and engage in a conversational Q&A, with a language model (LLM) based on the content of those documents.
18
+
19
+ GitHub: https://github.com/vinhnx/InkChatGPT""",
20
  },
21
  )
22
 
23
  # Hide Header
24
+ # st.markdown(
25
+ # """<style>.stApp [data-testid="stToolbar"]{display:none;}</style>""",
26
+ # unsafe_allow_html=True,
27
+ # )
28
 
29
  # Setup memory for contextual conversation
30
  msgs = StreamlitChatMessageHistory()