vinhnx90 commited on
Commit
60d06b5
1 Parent(s): a499b16

Update header message

Browse files
Files changed (1) hide show
  1. app.py +11 -2
app.py CHANGED
@@ -39,8 +39,17 @@ with st.container():
39
  )
40
  with col2:
41
  st.header(":books: InkChatGPT")
42
- st.write("**Chat** with Documents")
43
- st.caption("Supports PDF, TXT, DOCX, EPUB • Limit 200MB per file")
 
 
 
 
 
 
 
 
 
44
 
45
  chat_tab, documents_tab, settings_tab = st.tabs(["Chat", "Documents", "Settings"])
46
  with settings_tab:
 
39
  )
40
  with col2:
41
  st.header(":books: InkChatGPT")
42
+ st.caption(
43
+ """
44
+ Simple Retrieval Augmented Generation (RAG) LLM 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.
45
+
46
+ Think of it as ChatGPT for your documents.
47
+
48
+ Supports PDF, TXT, DOCX • Limit 200MB per file.
49
+ * GitHub: https://github.com/vinhnx/InkChatGPT
50
+ * Twitter: https://x.com/vinhnx
51
+ """
52
+ )
53
 
54
  chat_tab, documents_tab, settings_tab = st.tabs(["Chat", "Documents", "Settings"])
55
  with settings_tab: