Spaces:
Sleeping
Sleeping
Merge branch 'main' of https://huggingface.co/spaces/Al1Abdullah/AutoML
Browse files- README.md +7 -0
- rag/memory.py +1 -1
- requirements.txt +1 -1
README.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# AutoML Project
|
| 2 |
|
| 3 |
## Overview
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: AutoML
|
| 3 |
+
sdk: docker
|
| 4 |
+
emoji: 🚀
|
| 5 |
+
colorFrom: red
|
| 6 |
+
colorTo: purple
|
| 7 |
+
---
|
| 8 |
# AutoML Project
|
| 9 |
|
| 10 |
## Overview
|
rag/memory.py
CHANGED
|
@@ -6,7 +6,7 @@ import logging
|
|
| 6 |
# Configure logging for this module
|
| 7 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
| 8 |
|
| 9 |
-
CACHE_DIR = "
|
| 10 |
# Create the cache directory if it doesn't exist
|
| 11 |
if not os.path.exists(CACHE_DIR):
|
| 12 |
os.makedirs(CACHE_DIR)
|
|
|
|
| 6 |
# Configure logging for this module
|
| 7 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
| 8 |
|
| 9 |
+
CACHE_DIR = "/tmp/.cache"
|
| 10 |
# Create the cache directory if it doesn't exist
|
| 11 |
if not os.path.exists(CACHE_DIR):
|
| 12 |
os.makedirs(CACHE_DIR)
|
requirements.txt
CHANGED
|
@@ -10,4 +10,4 @@ python-dotenv
|
|
| 10 |
groq
|
| 11 |
flask
|
| 12 |
scipy
|
| 13 |
-
gunicorn
|
|
|
|
| 10 |
groq
|
| 11 |
flask
|
| 12 |
scipy
|
| 13 |
+
gunicorn
|