Spaces:
Runtime error
Runtime error
Create requirements.txt
Browse files- requirements.txt +5 -0
requirements.txt
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
streamlit==1.25.0 # Ensure you are using the latest stable version
|
| 2 |
+
httpx==0.24.0 # For making HTTP requests to APIs
|
| 3 |
+
pyyaml==6.0 # For parsing YAML API specs
|
| 4 |
+
transformers==4.33.2 # For Hugging Face LLM model interaction
|
| 5 |
+
torch==2.0.1 # Required for running Hugging Face models (depending on the model backend)
|