Update requirements.txt
Browse files- requirements.txt +12 -6
requirements.txt
CHANGED
@@ -1,16 +1,22 @@
|
|
1 |
-
|
2 |
-
pandas>=2.1.0
|
3 |
-
requests>=2.31.0
|
4 |
-
|
5 |
llama-index>=0.10.39
|
6 |
llama-index-core>=0.10.39
|
7 |
|
|
|
8 |
langchain>=0.1.14
|
9 |
langchain-community>=0.0.29
|
10 |
langchain-experimental>=0.0.3
|
11 |
-
|
12 |
openai>=1.25.0
|
13 |
|
|
|
14 |
duckduckgo-search>=1.0.0
|
15 |
wikipedia
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# LlamaIndex core agent support
|
|
|
|
|
|
|
2 |
llama-index>=0.10.39
|
3 |
llama-index-core>=0.10.39
|
4 |
|
5 |
+
# LangChain for tools
|
6 |
langchain>=0.1.14
|
7 |
langchain-community>=0.0.29
|
8 |
langchain-experimental>=0.0.3
|
|
|
9 |
openai>=1.25.0
|
10 |
|
11 |
+
# Tools used
|
12 |
duckduckgo-search>=1.0.0
|
13 |
wikipedia
|
14 |
+
youtube-transcript-api>=0.6.1
|
15 |
+
pytube>=15.0.0
|
16 |
+
|
17 |
+
# App UI & networking
|
18 |
+
gradio>=4.26.0
|
19 |
+
pandas>=2.1.0
|
20 |
+
requests>=2.31.0
|
21 |
+
aiofiles
|
22 |
+
python-dotenv
|