GT5557 commited on
Commit
db0987b
·
verified ·
1 Parent(s): 7817b6f

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +25 -8
requirements.txt CHANGED
@@ -1,12 +1,29 @@
1
- langchain
2
  langchain-groq
3
- langchain-google-genai
4
  langchain-community
5
  langgraph
6
- gradio
7
- python-dotenv
8
- wikipedia
9
- ddgs
10
- requests
11
  pandas
12
- beautifulsoup4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core LangChain stack
2
  langchain-groq
3
+ langchain-core
4
  langchain-community
5
  langgraph
6
+
7
+ # Groq SDK (used by langchain-groq under the hood)
8
+ groq
9
+
10
+ # Data / file processing
11
  pandas
12
+ openpyxl # required by pandas for .xlsx read/write
13
+
14
+ # Web tools
15
+ requests
16
+ beautifulsoup4
17
+ duckduckgo-search # powers DuckDuckGoSearchRun
18
+
19
+ # Wikipedia loader
20
+ wikipedia
21
+
22
+ # YouTube transcript (for video questions)
23
+ youtube-transcript-api
24
+
25
+ # Gradio UI
26
+ gradio
27
+
28
+ # Env vars
29
+ python-dotenv