Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +21 -28
requirements.txt
CHANGED
|
@@ -1,34 +1,27 @@
|
|
| 1 |
-
# ---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
pandas
|
| 5 |
|
| 6 |
-
#
|
| 7 |
-
|
| 8 |
-
|
|
|
|
| 9 |
|
| 10 |
-
#
|
| 11 |
-
|
|
|
|
|
|
|
| 12 |
|
| 13 |
-
# ---
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
langchain-core
|
| 17 |
-
langchain-community
|
| 18 |
-
langchain-google-genai # Gemini-Wrapper
|
| 19 |
|
| 20 |
-
# ---
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
wikipedia # Python-Wikipedia-API
|
| 24 |
-
arxiv # Arxiv API Wrapper
|
| 25 |
|
| 26 |
-
# ---
|
| 27 |
-
|
| 28 |
-
ffmpeg-python # nutzt das system-ffmpeg im Space
|
| 29 |
|
| 30 |
-
# ---
|
| 31 |
-
#
|
| 32 |
-
# pytesseract
|
| 33 |
-
|
| 34 |
-
tavily-python
|
|
|
|
| 1 |
+
# --- Kern-Abhängigkeiten für LangChain + LangGraph -------------------
|
| 2 |
+
langchain==0.1.* # LLM-Wrapper + Tools
|
| 3 |
+
langgraph>=0.0.38,<0.1 # Graph-Executor
|
|
|
|
| 4 |
|
| 5 |
+
# --- Modell- & Tool-Backends ----------------------------------------
|
| 6 |
+
google-generativeai>=0.3 # Gemini Flash
|
| 7 |
+
tavily-python>=0.3 # Web-Search-API
|
| 8 |
+
wikipedia-api>=0.6 # Wikipedia Wrapper
|
| 9 |
|
| 10 |
+
# --- Data & Parsing --------------------------------------------------
|
| 11 |
+
pandas>=2.2
|
| 12 |
+
openpyxl>=3.1 # Excel-Einlesen für parse_excel
|
| 13 |
+
tabulate>=0.9 # Markdown-Tabellen (Nice-to-have)
|
| 14 |
|
| 15 |
+
# --- Runtime I/O -----------------------------------------------------
|
| 16 |
+
requests>=2.31 # HTTP-Calls (GAIA API, Datei-Download)
|
| 17 |
+
python-dotenv>=1.0 # .env-Support für lokale Tests
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
+
# --- UI / Hugging Face Space ----------------------------------------
|
| 20 |
+
gradio>=4.26
|
| 21 |
+
gradio[oauth]>=4.26 # OAuth-Login-Button
|
|
|
|
|
|
|
| 22 |
|
| 23 |
+
# --- Optionales Debugging -------------------------------------------
|
| 24 |
+
beautifulsoup4>=4.12 # (wird evtl. von LangChain Search Wrappers genutzt)
|
|
|
|
| 25 |
|
| 26 |
+
# --- Extras ----------------------------------------------------------
|
| 27 |
+
# Pillow wird indirekt von gradio benötigt; wird automatisch mitinstalliert
|
|
|
|
|
|
|
|
|