Skip to content

Commit 8d7904f

Browse files
committed
Update model to gpt-5-mini in shiny_test_evaluation
Replaces the use of 'openai/gpt-5-nano-2025-08-07' with 'openai/gpt-5-mini-2025-08-07' for both the scorer and main model in the shiny_test_evaluation function.
1 parent fb96b6a commit 8d7904f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/inspect-ai/scripts/evaluation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,12 +202,12 @@ def shiny_test_evaluation() -> Task:
202202
Explanation: [Brief explanation focusing ONLY on how well the specified criteria were met]
203203
""",
204204
grade_pattern=r"GRADE:\s*([CPI])",
205-
model=get_model("openai/gpt-5-nano-2025-08-07"),
205+
model=get_model("openai/gpt-5-mini-2025-08-07"),
206206
)
207207

208208
return Task(
209209
dataset=samples,
210210
solver=generate(),
211211
scorer=scorer,
212-
model=get_model("openai/gpt-5-nano-2025-08-07"),
212+
model=get_model("openai/gpt-5-mini-2025-08-07"),
213213
)

0 commit comments

Comments
 (0)