Update requirements.txt
Browse files- requirements.txt +10 -16
requirements.txt
CHANGED
@@ -1,13 +1,16 @@
|
|
1 |
-
# LangChain ecosystem
|
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
|
8 |
openai>=1.25.0
|
|
|
|
|
|
|
9 |
|
10 |
-
# Tools
|
11 |
duckduckgo-search>=1.0.0
|
12 |
wikipedia
|
13 |
youtube-transcript-api>=0.6.1
|
@@ -16,18 +19,9 @@ google-api-python-client>=2.100.0
|
|
16 |
# Audio transcription
|
17 |
openai-whisper>=20230314
|
18 |
|
19 |
-
#
|
20 |
-
openpyxl>=3.1.2
|
21 |
pandas>=2.1.0
|
22 |
|
23 |
-
#
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
# Utilities
|
28 |
-
python-dotenv>=1.0.1
|
29 |
-
aiofiles>=23.2.1
|
30 |
-
|
31 |
-
# Optional
|
32 |
-
python-chess>=1.999
|
33 |
-
pillow>=10.3.0
|
|
|
1 |
+
# Core LangChain ecosystem
|
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 |
+
# Tools & data
|
14 |
duckduckgo-search>=1.0.0
|
15 |
wikipedia
|
16 |
youtube-transcript-api>=0.6.1
|
|
|
19 |
# Audio transcription
|
20 |
openai-whisper>=20230314
|
21 |
|
22 |
+
# Data & Pandas
|
|
|
23 |
pandas>=2.1.0
|
24 |
|
25 |
+
# Optional utilities
|
26 |
+
python-dotenv
|
27 |
+
aiofiles
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|