Spaces:
Sleeping
Sleeping
Commit ·
c587724
1
Parent(s): 32646e6
feat: ver 2.0
Browse files- main.py +0 -1
- requirements.txt +27 -27
main.py
CHANGED
|
@@ -175,7 +175,6 @@ def user_feedback(value, session_id):
|
|
| 175 |
return gr.update(visible=False), "", session_id
|
| 176 |
|
| 177 |
with gr.Blocks() as demo:
|
| 178 |
-
# Create a state variable; this is unique per session.
|
| 179 |
session_id = gr.State(None)
|
| 180 |
|
| 181 |
gr.Markdown("## Find literature to answer your question!")
|
|
|
|
| 175 |
return gr.update(visible=False), "", session_id
|
| 176 |
|
| 177 |
with gr.Blocks() as demo:
|
|
|
|
| 178 |
session_id = gr.State(None)
|
| 179 |
|
| 180 |
gr.Markdown("## Find literature to answer your question!")
|
requirements.txt
CHANGED
|
@@ -1,28 +1,28 @@
|
|
| 1 |
-
pandas
|
| 2 |
-
langchain
|
| 3 |
-
langchain-community
|
| 4 |
-
python-dotenv
|
| 5 |
-
langchain_ollama
|
| 6 |
-
langchain-openai
|
| 7 |
-
tiktoken
|
| 8 |
-
langgraph
|
| 9 |
-
beautifulsoup4
|
| 10 |
-
tqdm
|
| 11 |
-
ipywidgets
|
| 12 |
-
widgetsnbextension
|
| 13 |
-
pandas-profiling
|
| 14 |
-
pypdf
|
| 15 |
-
gradio
|
| 16 |
-
gradio_client
|
| 17 |
-
gradio_log
|
| 18 |
-
langchain_chroma
|
| 19 |
defusedxml
|
| 20 |
-
fonttools
|
| 21 |
-
lark
|
| 22 |
-
docx2txt
|
| 23 |
-
azure-mgmt-storage
|
| 24 |
-
azure-identity
|
| 25 |
-
azure-storage-blob
|
| 26 |
-
azure-cosmos
|
| 27 |
-
fitz
|
| 28 |
-
PyMuPDF
|
|
|
|
| 1 |
+
pandas==2.2.3
|
| 2 |
+
langchain==0.3.7
|
| 3 |
+
langchain-community==0.3.7
|
| 4 |
+
python-dotenv==1.0.1
|
| 5 |
+
langchain_ollama==0.2.0
|
| 6 |
+
langchain-openai==0.2.8
|
| 7 |
+
tiktoken==0.8.0
|
| 8 |
+
langgraph==0.2.48
|
| 9 |
+
beautifulsoup4==2.6
|
| 10 |
+
tqdm==4.67.0
|
| 11 |
+
ipywidgets==8.1.5
|
| 12 |
+
widgetsnbextension==4.0.13
|
| 13 |
+
pandas-profiling==3.2.0
|
| 14 |
+
pypdf==5.1.0
|
| 15 |
+
gradio==5.5.0
|
| 16 |
+
gradio_client==1.4.2
|
| 17 |
+
gradio_log==0.0.7
|
| 18 |
+
langchain_chroma==0.1.4
|
| 19 |
defusedxml
|
| 20 |
+
fonttools==4.55.0
|
| 21 |
+
lark==1.2.2
|
| 22 |
+
docx2txt==0.8
|
| 23 |
+
azure-mgmt-storage==21.2.1
|
| 24 |
+
azure-identity==1.19.0
|
| 25 |
+
azure-storage-blob==12.24.0
|
| 26 |
+
azure-cosmos==4.9.0
|
| 27 |
+
fitz==0.0.1.dev2
|
| 28 |
+
PyMuPDF==1.25.3
|