Spaces:
Sleeping
Sleeping
chore: switch default model to Qwen/Qwen2.5-0.5B-Instruct
Browse files- app/core/config.py +1 -1
app/core/config.py
CHANGED
|
@@ -8,7 +8,7 @@ from typing import Literal
|
|
| 8 |
|
| 9 |
@dataclass(frozen=True, slots=True)
|
| 10 |
class Settings:
|
| 11 |
-
model_name: str = "
|
| 12 |
max_trace_tokens: int = 1024
|
| 13 |
max_sentences: int = 40
|
| 14 |
take_log: bool = True
|
|
|
|
| 8 |
|
| 9 |
@dataclass(frozen=True, slots=True)
|
| 10 |
class Settings:
|
| 11 |
+
model_name: str = "Qwen/Qwen2.5-0.5B-Instruct"
|
| 12 |
max_trace_tokens: int = 1024
|
| 13 |
max_sentences: int = 40
|
| 14 |
take_log: bool = True
|