Skip to content

Commit 14f539e

Browse files
committed
Fix model references: change qwen3 to base-model
The vllm simulator backend only provides 'base-model', not 'qwen3'. All decision modelRefs and default_model now use 'base-model' to match the available backend model. This fixes HTTP 404 errors: 'The model qwen3 does not exist' Signed-off-by: Senan Zedan <[email protected]>
1 parent ffa38e2 commit 14f539e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

e2e/profiles/routing-strategies/values.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ config:
138138
- type: "keyword"
139139
name: "urgent_request"
140140
modelRefs:
141-
- model: "qwen3"
141+
- model: "base-model"
142142
use_reasoning: false
143143
plugins:
144144
- type: "system_prompt"
@@ -158,7 +158,7 @@ config:
158158
- type: "keyword"
159159
name: "sensitive_data"
160160
modelRefs:
161-
- model: "qwen3"
161+
- model: "base-model"
162162
use_reasoning: false
163163
plugins:
164164
- type: "system_prompt"
@@ -182,7 +182,7 @@ config:
182182
- type: "keyword"
183183
name: "exclude_spam"
184184
modelRefs:
185-
- model: "qwen3"
185+
- model: "base-model"
186186
use_reasoning: false
187187
plugins:
188188
- type: "system_prompt"
@@ -203,7 +203,7 @@ config:
203203
- type: "domain"
204204
name: "business"
205205
modelRefs:
206-
- model: "qwen3"
206+
- model: "base-model"
207207
use_reasoning: false
208208
plugins:
209209
- type: "system_prompt"
@@ -223,7 +223,7 @@ config:
223223
- type: "domain"
224224
name: "other"
225225
modelRefs:
226-
- model: "qwen3"
226+
- model: "base-model"
227227
use_reasoning: false
228228
plugins:
229229
- type: "system_prompt"
@@ -258,7 +258,7 @@ config:
258258
lora_default_success_rate: 0.98
259259
traditional_default_success_rate: 0.95
260260

261-
default_model: qwen3
261+
default_model: base-model
262262

263263
# Reasoning family configurations
264264
reasoning_families:

0 commit comments

Comments
 (0)