Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +25 -10
requirements.txt
CHANGED
@@ -1,14 +1,29 @@
|
|
1 |
-
#
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
5 |
gradio>=4.0.0
|
|
|
|
|
|
|
|
|
|
|
6 |
numpy>=1.21.0
|
7 |
-
transformers >= 4.49.0
|
8 |
-
torch >= 2.3.0
|
9 |
-
accelerate >= 0.30.0
|
10 |
|
11 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
-
#
|
14 |
-
#
|
|
|
1 |
+
# Gemini Vision Pro Medical Analyzer Requirements
|
2 |
+
# Much lighter than local model requirements!
|
3 |
+
|
4 |
+
# Google Gemini API
|
5 |
+
google-generativeai>=0.3.0
|
6 |
+
|
7 |
+
# Web interface
|
8 |
gradio>=4.0.0
|
9 |
+
|
10 |
+
# Image processing
|
11 |
+
Pillow>=9.0.0
|
12 |
+
|
13 |
+
# Basic utilities
|
14 |
numpy>=1.21.0
|
|
|
|
|
|
|
15 |
|
16 |
+
# For Hugging Face Spaces deployment (optional)
|
17 |
+
spaces
|
18 |
+
|
19 |
+
# JSON handling (usually included with Python)
|
20 |
+
# json - built-in
|
21 |
+
|
22 |
+
# Environment and system utilities
|
23 |
+
# os - built-in
|
24 |
+
# time - built-in
|
25 |
+
# base64 - built-in
|
26 |
+
# io - built-in
|
27 |
|
28 |
+
# Optional: Enhanced functionality
|
29 |
+
# requests>=2.28.0 # If you need additional HTTP functionality
|