From ef8a4a2da16e88e023237a6d873ee55748793c04 Mon Sep 17 00:00:00 2001 From: Farouk Adeleke Date: Sun, 30 Nov 2025 06:33:21 -0500 Subject: [PATCH] Unoptimized Clinical Impact Judge --- config.json | 2 +- src/llm_judge/cli/run_gepa.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.json b/config.json index 4b3b089..46375fb 100644 --- a/config.json +++ b/config.json @@ -1,6 +1,6 @@ { "task_model": "openrouter/google/gemini-2.5-pro", - "reflection_model": "openrouter/anthropic/claude-4-sonnet", + "reflection_model": "openrouter/anthropic/claude-sonnet-4", "max_tokens": 8000, "temperature": 0.1, "test_size": 50, diff --git a/src/llm_judge/cli/run_gepa.py b/src/llm_judge/cli/run_gepa.py index 30f904d..2c29e82 100644 --- a/src/llm_judge/cli/run_gepa.py +++ b/src/llm_judge/cli/run_gepa.py @@ -29,7 +29,7 @@ def parse_args(): "--task-model", type=str, default="meta-llama/llama-3.3-70b-instruct" ) parser.add_argument( - "--reflection-model", type=str, default="anthropic/claude-4-sonnet" + "--reflection-model", type=str, default="anthropic/claude-sonnet-4" ) parser.add_argument( "--no-separate-reflection",