Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -100,4 +100,10 @@ with tab1:
|
|
100 |
message(st.session_state['past'][i], is_user=True, key=str(i) + '_user')
|
101 |
|
102 |
with tab2:
|
103 |
-
st.write('
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
message(st.session_state['past'][i], is_user=True, key=str(i) + '_user')
|
101 |
|
102 |
with tab2:
|
103 |
+
st.write('About the Application')
|
104 |
+
st.write('Chat with Files enables user to extract all the information from a file. User can obtain the transcription, the embedding of each segment and also ask questions to the file through a chat.')
|
105 |
+
st.write('Features include- ')
|
106 |
+
st.write('1. Reading any pdf, docx, txt or csv file')
|
107 |
+
st.write('2. Embedding texts segments with Langchain and OpenAI')
|
108 |
+
st.write('3. Chatting with the file using streamlit-chat and LangChain QA with source and GPT model')
|
109 |
+
|