Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +19 -23
requirements.txt
CHANGED
@@ -1,28 +1,24 @@
|
|
1 |
-
#
|
2 |
-
langchain
|
3 |
-
langgraph
|
4 |
-
langchain-google-genai
|
5 |
|
6 |
-
#
|
7 |
-
|
8 |
-
|
9 |
-
wikipedia-api>=0.6 # Wikipedia Wrapper
|
10 |
|
11 |
-
#
|
12 |
-
pandas
|
13 |
-
openpyxl
|
14 |
-
tabulate
|
15 |
|
16 |
-
#
|
17 |
-
requests
|
18 |
-
python-dotenv
|
19 |
|
20 |
-
#
|
21 |
-
gradio
|
22 |
-
gradio[oauth]
|
23 |
|
24 |
-
#
|
25 |
-
beautifulsoup4
|
26 |
-
|
27 |
-
# --- Extras ----------------------------------------------------------
|
28 |
-
# Pillow wird indirekt von gradio benötigt; wird automatisch mitinstalliert
|
|
|
1 |
+
# Core – LangChain-Ökosystem
|
2 |
+
langchain
|
3 |
+
langgraph
|
4 |
+
langchain-google-genai # Gemini-Wrapper
|
5 |
|
6 |
+
# Tools / Retrieval
|
7 |
+
tavily-python # Web-Search-API
|
8 |
+
wikipedia-api # Wikipedia-Wrapper
|
|
|
9 |
|
10 |
+
# Data-Handling
|
11 |
+
pandas
|
12 |
+
openpyxl # Excel-Parsing
|
13 |
+
tabulate # Markdown-Tabellen
|
14 |
|
15 |
+
# Runtime I/O
|
16 |
+
requests # GAIA-API & File-Download
|
17 |
+
python-dotenv # .env-Support (lokal)
|
18 |
|
19 |
+
# UI (Hugging Face Space)
|
20 |
+
gradio
|
21 |
+
gradio[oauth] # Login-Button & Profil–Info
|
22 |
|
23 |
+
# Optional / Helper
|
24 |
+
beautifulsoup4 # wird von manchen LangChain-Wrappers genutzt
|
|
|
|
|
|