ZeroTimo commited on
Commit
99be72c
·
verified ·
1 Parent(s): 400e97a

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +21 -28
requirements.txt CHANGED
@@ -1,34 +1,27 @@
1
- # --- HF Space Laufzeit-Libraries ---------------------------------
2
- gradio
3
- requests
4
- pandas
5
 
6
- # Dateiformate
7
- openpyxl # Excel lesen
8
- tabulate # DataFrame -> Markdown-Vorschau
 
9
 
10
- # .env Support
11
- python-dotenv
 
 
12
 
13
- # --- LangChain Ökosystem ----------------------------------------
14
- langgraph
15
- langchain
16
- langchain-core
17
- langchain-community
18
- langchain-google-genai # Gemini-Wrapper
19
 
20
- # --- Such- & Parser-Bibliotheken --------------------------------
21
- duckduckgo-search # Web-Suche
22
- beautifulsoup4 # HTML-Parsing (WikipediaLoader)
23
- wikipedia # Python-Wikipedia-API
24
- arxiv # Arxiv API Wrapper
25
 
26
- # --- Audio-Transkription ---------------------------------------
27
- faster-whisper
28
- ffmpeg-python # nutzt das system-ffmpeg im Space
29
 
30
- # --- OCR / Imaging (nur falls später benötigt)
31
- # pillow
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