Spaces:
Sleeping
Sleeping
Create requirements.txt
Browse files- requirements.txt +10 -0
requirements.txt
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
rasa
|
2 |
+
rasa-sdk
|
3 |
+
psycopg2-binary # PostgreSQL driver (if you are using PostgreSQL)
|
4 |
+
transformers # For using pre-trained LLMs from Hugging Face
|
5 |
+
torch # PyTorch, often required by transformers
|
6 |
+
fastapi # For creating a fast API backend
|
7 |
+
uvicorn # ASGI server for FastAPI
|
8 |
+
streamlit # For creating the UI
|
9 |
+
python-dotenv # For managing environment variables
|
10 |
+
requests # For making HTTP requests from Streamlit to FastAPI backend
|