Spaces:
Sleeping
Sleeping
Update header message
Browse files
app.py
CHANGED
@@ -39,8 +39,17 @@ with st.container():
|
|
39 |
)
|
40 |
with col2:
|
41 |
st.header(":books: InkChatGPT")
|
42 |
-
st.
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|