Essi commited on
Commit
d472edc
Β·
1 Parent(s): db51870

build: update `requirements.txt` to include new dependencies for data handling and media utilities

Browse files
Files changed (1) hide show
  1. requirements.txt +19 -5
requirements.txt CHANGED
@@ -1,12 +1,26 @@
 
1
  gradio
2
  requests
 
 
 
3
  langgraph==0.4.7
4
  langchain_openai==0.3.18
5
  langchain_core==0.3.61
6
  langchain==0.3.25
7
  langchain_community==0.3.24
8
- pandas==2.2.3
9
- duckduckgo-search==8.0.2
10
- youtube-transcript-api==1.0.3
11
- openpyxl==3.1.5
12
- wikipedia==1.4.0
 
 
 
 
 
 
 
 
 
 
 
1
+ # ── core UI / infra
2
  gradio
3
  requests
4
+ pandas==2.2.3
5
+
6
+ # ── LangGraph + LangChain stack
7
  langgraph==0.4.7
8
  langchain_openai==0.3.18
9
  langchain_core==0.3.61
10
  langchain==0.3.25
11
  langchain_community==0.3.24
12
+ langchain-groq==0.3.2
13
+
14
+ # ── Retrieval helpers
15
+ duckduckgo-search==8.0.2 # for DuckDuckGo wrapper
16
+ tavily-python==0.3.3 # TavilySearchResults tool
17
+ wikipedia==1.4.0 # WikipediaLoader
18
+
19
+ # ── Media utilities
20
+ youtube-transcript-api==1.0.3 # YouTube transcripts
21
+ openpyxl==3.1.5 # Excel parsing when GAIA attaches .xlsx
22
+ Pillow>=10.2.0 # image handling for transformers
23
+
24
+ # ── Lightweight vision model
25
+ transformers>=4.41.2
26
+ torch>=2.3.0 # auto-installs CPU wheels on HF Spaces