Che237 commited on
Commit
f42e82f
·
verified ·
1 Parent(s): df0522f

Update requirements.txt - add FastAPI REST endpoints + Gemini AI

Browse files
Files changed (1) hide show
  1. requirements.txt +9 -5
requirements.txt CHANGED
@@ -1,5 +1,5 @@
1
- # CyberForge ML Services - Hugging Face Space
2
- # Gradio 5.12+ with bug fixes for Python 3.13
3
 
4
  # Core ML
5
  scikit-learn>=1.5.0
@@ -7,17 +7,21 @@ pandas>=2.2.0
7
  numpy>=2.0.0
8
  joblib>=1.4.0
9
 
10
- # Gradio - use latest stable with all bug fixes
11
  gradio>=5.20.0
12
 
 
 
 
 
13
  # HF Hub
14
  huggingface_hub>=0.25.0
15
 
16
  # Feature Engineering
17
  tldextract>=5.1.0
18
 
19
- # Gemini AI
20
- google-generativeai>=0.8.0
21
 
22
  # Notebook execution
23
  nbformat>=5.10.0
 
1
+ # CyberForge AI - HuggingFace Space
2
+ # Combined Gradio UI + FastAPI REST API
3
 
4
  # Core ML
5
  scikit-learn>=1.5.0
 
7
  numpy>=2.0.0
8
  joblib>=1.4.0
9
 
10
+ # Gradio UI
11
  gradio>=5.20.0
12
 
13
+ # FastAPI REST endpoints (for Heroku backend)
14
+ fastapi>=0.100.0
15
+ uvicorn[standard]>=0.22.0
16
+
17
  # HF Hub
18
  huggingface_hub>=0.25.0
19
 
20
  # Feature Engineering
21
  tldextract>=5.1.0
22
 
23
+ # Gemini AI (new SDK)
24
+ google-genai>=1.0.0
25
 
26
  # Notebook execution
27
  nbformat>=5.10.0