BART-ender commited on
Commit
b68ad1b
·
verified ·
1 Parent(s): e773dbc

chore: switch default model to Qwen/Qwen2.5-0.5B-Instruct

Browse files
Files changed (1) hide show
  1. 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 = "sapientinc/HRM-Text-1B"
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