Update requirements.txt
Browse files- requirements.txt +14 -14
requirements.txt
CHANGED
@@ -1,27 +1,27 @@
|
|
1 |
-
# Core
|
|
|
|
|
|
|
2 |
langchain>=0.1.14
|
3 |
langchain-community>=0.0.29
|
4 |
langchain-experimental>=0.0.3
|
5 |
langchain-openai>=0.1.7
|
6 |
-
|
7 |
-
# LLM & HF support
|
8 |
openai>=1.25.0
|
9 |
-
huggingface-hub
|
10 |
-
gradio>=4.26.0
|
11 |
-
requests>=2.31.0
|
12 |
|
13 |
-
#
|
14 |
duckduckgo-search>=1.0.0
|
15 |
wikipedia
|
16 |
-
youtube-transcript-api
|
17 |
-
google-api-python-client
|
18 |
-
|
19 |
-
# Audio transcription
|
20 |
-
openai-whisper>=20230314
|
21 |
|
22 |
-
#
|
|
|
23 |
pandas>=2.1.0
|
|
|
|
|
|
|
|
|
24 |
|
25 |
-
# Optional
|
26 |
python-dotenv
|
27 |
aiofiles
|
|
|
1 |
+
# Core LLM + Agent
|
2 |
+
llama-index>=0.10.39
|
3 |
+
llama-index-core>=0.10.39
|
4 |
+
llama-index-experimental>=0.1.3
|
5 |
langchain>=0.1.14
|
6 |
langchain-community>=0.0.29
|
7 |
langchain-experimental>=0.0.3
|
8 |
langchain-openai>=0.1.7
|
|
|
|
|
9 |
openai>=1.25.0
|
|
|
|
|
|
|
10 |
|
11 |
+
# Langchain tools
|
12 |
duckduckgo-search>=1.0.0
|
13 |
wikipedia
|
14 |
+
youtube-transcript-api
|
15 |
+
google-api-python-client
|
|
|
|
|
|
|
16 |
|
17 |
+
# Gradio + Submission
|
18 |
+
gradio>=4.26.0
|
19 |
pandas>=2.1.0
|
20 |
+
requests>=2.31.0
|
21 |
+
|
22 |
+
# YouTube loader dependencies
|
23 |
+
pytube>=15.0.0
|
24 |
|
25 |
+
# Optional utils
|
26 |
python-dotenv
|
27 |
aiofiles
|