File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ class InferenceTask(BaseTextTask):
45
45
reference : str | None = None
46
46
system_prompt : str | None = None
47
47
llm_model : ModelConfig | None = None
48
- llm_model_id : str | None = Field (default_factory = lambda : random . choice ( ModelZoo .models_configs ) .llm_model_id )
48
+ llm_model_id : str | None = Field (default_factory = lambda : ModelZoo .models_configs [ 0 if random . random () < 0.8 else 1 ] .llm_model_id )
49
49
seed : int = Field (default_factory = lambda : random .randint (0 , 1_000_000 ), allow_mutation = False )
50
50
sampling_params : dict [str , float ] = shared_settings .SAMPLING_PARAMS .copy ()
51
51
messages : list [dict ] | None = None
Original file line number Diff line number Diff line change @@ -135,8 +135,8 @@ class SharedSettings(BaseSettings):
135
135
MAX_ALLOWED_VRAM_GB : float = Field (62 , env = "MAX_ALLOWED_VRAM_GB" )
136
136
PROXY_URL : Optional [str ] = Field (None , env = "PROXY_URL" )
137
137
LLM_MODEL : list [str ] = [
138
- "hugging-quants/Meta-Llama-3.1-70B-Instruct-AWQ-INT4" ,
139
138
"mrfakename/mistral-small-3.1-24b-instruct-2503-hf" ,
139
+ "hugging-quants/Meta-Llama-3.1-70B-Instruct-AWQ-INT4" ,
140
140
]
141
141
SAMPLING_PARAMS : dict [str , Any ] = {
142
142
"temperature" : 0.7 ,
You can’t perform that action at this time.
0 commit comments