From c42d9055ed23b68e6b0b9d1154fadc36876b7dd4 Mon Sep 17 00:00:00 2001 From: teknium Date: Thu, 2 Oct 2025 20:05:09 +0000 Subject: [PATCH] Move test run back to repo root. weirdness occurred --- scripts/test_run.sh => test_run.sh | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) rename scripts/test_run.sh => test_run.sh (66%) mode change 100644 => 100755 diff --git a/scripts/test_run.sh b/test_run.sh old mode 100644 new mode 100755 similarity index 66% rename from scripts/test_run.sh rename to test_run.sh index a559e120f..182cf284e --- a/scripts/test_run.sh +++ b/test_run.sh @@ -13,21 +13,11 @@ PROMPT="$1" # Set debug mode for web tools export WEB_TOOLS_DEBUG=true -# Resolve repository root relative to this script and run from there -SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" -REPO_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)" -cd "$REPO_ROOT" - -# Prefer local venv if present -if [ -f "venv/bin/activate" ]; then - source venv/bin/activate -fi - # Run the agent with the provided prompt python run_agent.py \ --query "$PROMPT" \ --max_turns 30 \ - --model claude-sonnet-4-20250514 \ + --model claude-sonnet-4-5-20250929 \ --base_url https://api.anthropic.com/v1/ \ --api_key $ANTHROPIC_API_KEY \ --save_trajectories \