Update requirements.txt
Browse files- requirements.txt +22 -68
requirements.txt
CHANGED
@@ -1,70 +1,24 @@
|
|
1 |
gradio
|
2 |
requests
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
idna==3.10
|
26 |
-
jsonpatch==1.33
|
27 |
-
jsonpointer==3.0.0
|
28 |
-
langchain==0.3.26
|
29 |
-
langchain-community==0.3.26
|
30 |
-
langchain-core==0.3.66
|
31 |
-
langchain-experimental==0.3.4
|
32 |
-
langchain-groq==0.3.4
|
33 |
-
langchain-text-splitters==0.3.8
|
34 |
-
langchainhub==0.1.21
|
35 |
-
langsmith==0.4.4
|
36 |
-
lxml==6.0.0
|
37 |
-
marshmallow==3.26.1
|
38 |
-
multidict==6.6.2
|
39 |
-
mypy_extensions==1.1.0
|
40 |
-
numpy==2.2.6
|
41 |
-
orjson==3.10.18
|
42 |
-
packaging==24.2
|
43 |
-
pandas==2.3.0
|
44 |
-
primp==0.15.0
|
45 |
-
propcache==0.3.2
|
46 |
-
pydantic==2.11.7
|
47 |
-
pydantic-settings==2.10.1
|
48 |
-
pydantic_core==2.33.2
|
49 |
-
python-dateutil==2.9.0.post0
|
50 |
-
python-dotenv==1.1.1
|
51 |
-
python-magic==0.4.27
|
52 |
-
pytz==2025.2
|
53 |
-
PyYAML==6.0.2
|
54 |
-
regex==2024.11.6
|
55 |
-
requests==2.32.4
|
56 |
-
requests-toolbelt==1.0.0
|
57 |
-
six==1.17.0
|
58 |
-
sniffio==1.3.1
|
59 |
-
SQLAlchemy==2.0.41
|
60 |
-
tabulate==0.9.0
|
61 |
-
tenacity==9.1.2
|
62 |
-
tiktoken==0.9.0
|
63 |
-
types-requests==2.32.4.20250611
|
64 |
-
typing-inspect==0.9.0
|
65 |
-
typing-inspection==0.4.1
|
66 |
-
typing_extensions==4.14.0
|
67 |
-
tzdata==2025.2
|
68 |
-
urllib3==2.5.0
|
69 |
-
yarl==1.20.1
|
70 |
-
zstandard==0.23.0
|
|
|
1 |
gradio
|
2 |
requests
|
3 |
+
|
4 |
+
# --- Core agent stack ---
|
5 |
+
langchain>=0.1.17
|
6 |
+
langchain-community>=0.0.21
|
7 |
+
langchain-experimental>=0.0.17 # PythonREPLTool
|
8 |
+
langchain-groq>=0.0.5 # Groq LLM wrapper
|
9 |
+
langchain-hub>=0.1.4 # pulls the ReAct prompt template
|
10 |
+
|
11 |
+
# --- Token counting ---
|
12 |
+
tiktoken>=0.6.0
|
13 |
+
|
14 |
+
# --- Config / env helpers ---
|
15 |
+
python-dotenv>=1.0.0
|
16 |
+
|
17 |
+
# --- Web-search helper (Serper) ---
|
18 |
+
requests>=2.31 # Serper wrapper just calls HTTP
|
19 |
+
|
20 |
+
# --- CSV / JSON loader deps ---
|
21 |
+
pandas>=2.2
|
22 |
+
# MIME sniffing (choose the right wheel automatically)
|
23 |
+
python-magic!=0.4.27; sys_platform!="win32"
|
24 |
+
python-magic-bin==0.4.14; sys_platform=="win32"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|