venkateshdasari021 commited on
Commit
6fe248c
·
verified ·
1 Parent(s): efbffb5

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +22 -68
requirements.txt CHANGED
@@ -1,70 +1,24 @@
1
  gradio
2
  requests
3
- aiohappyeyeballs==2.6.1
4
- aiohttp==3.12.13
5
- aiosignal==1.3.2
6
- annotated-types==0.7.0
7
- anyio==4.9.0
8
- async-timeout==4.0.3
9
- attrs==25.3.0
10
- certifi==2025.6.15
11
- charset-normalizer==3.4.2
12
- click==8.2.1
13
- dataclasses-json==0.6.7
14
- distro==1.9.0
15
- duckduckgo_search==8.0.4
16
- exceptiongroup==1.3.0
17
- frozenlist==1.7.0
18
- google_search_results==2.4.2
19
- greenlet==3.2.3
20
- groq==0.29.0
21
- h11==0.16.0
22
- httpcore==1.0.9
23
- httpx==0.28.1
24
- httpx-sse==0.4.1
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"