File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 5151logger = logging .getLogger (__name__ )
5252
5353# Uncomment to enable logging
54- # logging.basicConfig(
55- # level=logging.INFO, format="%(asctime)s - %(name)s - %(message)s", datefmt="%H:%M:%S"
56- # )
54+ logging .basicConfig (
55+ level = logging .INFO , format = "%(asctime)s - %(name)s - %(message)s" , datefmt = "%H:%M:%S"
56+ )
5757
5858# ---------------------------------------------------------------------------
5959# Agent factory helpers
@@ -155,12 +155,14 @@ async def run_full_dataset(
155155 agent_class = OperatorAgent
156156 agent_config : dict [str , Any ] = {
157157 "allowed_tools" : allowed_tools or ["openai_computer" ],
158+ "validate_api_key" : False ,
158159 }
159160 else :
160161 agent_class = ClaudeAgent
161162 agent_config = {
162163 "model" : model or "claude-sonnet-4-20250514" ,
163164 "allowed_tools" : allowed_tools or ["anthropic_computer" ],
165+ "validate_api_key" : False ,
164166 }
165167
166168 eval_name = f"Evaluation { dataset_name .split ('/' )[- 1 ]} "
You can’t perform that action at this time.
0 commit comments