Spaces:
Build error
Build error
Update config/config.py
Browse files- config/config.py +3 -0
config/config.py
CHANGED
|
@@ -4,6 +4,9 @@ from pathlib import Path
|
|
| 4 |
import torch
|
| 5 |
|
| 6 |
class Settings(BaseSettings):
|
|
|
|
|
|
|
|
|
|
| 7 |
MODEL_NAME: str = "mlx-community/Llama-3.2-3B-Instruct-8bit"
|
| 8 |
EMBEDDER_MODEL: str = "distiluse-base-multilingual-cased"
|
| 9 |
CHUNK_SIZE: int = 1000
|
|
|
|
| 4 |
import torch
|
| 5 |
|
| 6 |
class Settings(BaseSettings):
|
| 7 |
+
secret_key: str
|
| 8 |
+
api_key: str
|
| 9 |
+
model_name: str # Add this field
|
| 10 |
MODEL_NAME: str = "mlx-community/Llama-3.2-3B-Instruct-8bit"
|
| 11 |
EMBEDDER_MODEL: str = "distiluse-base-multilingual-cased"
|
| 12 |
CHUNK_SIZE: int = 1000
|