Spaces:
Running
Running
Jatin Mehra
commited on
Commit
·
7a2ad34
1
Parent(s):
68f0395
feat: replace deprecated llama3-8b-8192 with llama-3.1-8b-instant as default model
Browse files- Update default model from llama3-8b-8192 to llama-3.1-8b-instant
- Ensures compatibility with current GroqCloud API offerings
- Maintains same functionality with updated model endpoint
- configs/config.py +1 -1
configs/config.py
CHANGED
@@ -24,7 +24,7 @@ class Config:
|
|
24 |
MAX_FILE_SIZE: int = 50 * 1024 * 1024 # 50MB
|
25 |
|
26 |
# Model Configuration
|
27 |
-
DEFAULT_MODEL: str = "
|
28 |
EMBEDDING_MODEL: str = "BAAI/bge-large-en-v1.5"
|
29 |
|
30 |
# Text Processing Settings
|
|
|
24 |
MAX_FILE_SIZE: int = 50 * 1024 * 1024 # 50MB
|
25 |
|
26 |
# Model Configuration
|
27 |
+
DEFAULT_MODEL: str = "llama-3.1-8b-instant"
|
28 |
EMBEDDING_MODEL: str = "BAAI/bge-large-en-v1.5"
|
29 |
|
30 |
# Text Processing Settings
|