Spaces:
Sleeping
Sleeping
Create requirements.txt
Browse files- requirements.txt +6 -0
requirements.txt
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
streamlit==1.25.0 # Latest stable version of Streamlit
|
| 2 |
+
openai==0.29.0 # OpenAI Python library to interact with OpenAI API
|
| 3 |
+
Pillow==10.0.1 # For image processing
|
| 4 |
+
opencv-python==4.8.0.74 # OpenCV for additional image processing
|
| 5 |
+
tensorflow==2.14.0 # TensorFlow for custom models (optional if using OpenAI API only)
|
| 6 |
+
numpy==1.24.4 # For handling arrays
|