Update requirements.txt
Browse files- requirements.txt +18 -14
requirements.txt
CHANGED
@@ -1,22 +1,26 @@
|
|
1 |
-
#
|
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
|
12 |
-
|
13 |
-
|
14 |
-
youtube-transcript-api>=0.6.1
|
15 |
-
pytube>=15.0.0
|
16 |
|
17 |
-
#
|
18 |
-
gradio>=4.26.0
|
19 |
pandas>=2.1.0
|
20 |
requests>=2.31.0
|
21 |
-
aiofiles
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# LangChain core + tools
|
|
|
|
|
|
|
|
|
2 |
langchain>=0.1.14
|
3 |
langchain-community>=0.0.29
|
4 |
langchain-experimental>=0.0.3
|
5 |
+
|
6 |
+
# LlamaIndex core
|
7 |
+
llama-index>=0.10.39
|
8 |
+
llama-index-core>=0.10.39
|
9 |
+
|
10 |
+
# OpenAI LLM
|
11 |
openai>=1.25.0
|
12 |
|
13 |
+
# Tools
|
14 |
+
openai-whisper>=20230314
|
15 |
+
openpyxl>=3.1.2
|
|
|
|
|
16 |
|
17 |
+
# File & web
|
|
|
18 |
pandas>=2.1.0
|
19 |
requests>=2.31.0
|
20 |
+
aiofiles>=23.2.1
|
21 |
+
|
22 |
+
# UI
|
23 |
+
gradio>=4.26.0
|
24 |
+
|
25 |
+
# Optional for MP3/YouTube in local
|
26 |
+
ffmpeg-python>=0.2.0
|