Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions agent_baselines/solvers/react/basic_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def basic_agent(
init: Solver | list[Solver] | None = None,
tools: list[Tool] | Solver | None = None,
cache: bool | CachePolicy = False,
max_steps: int = 10,
max_steps: int = 100,
max_tool_output: int | None = None,
continue_message: str = DEFAULT_CONTINUE_MESSAGE,
add_submit_tool: bool = True,
Expand Down Expand Up @@ -384,7 +384,7 @@ async def solve(state: TaskState, generate: Generate) -> TaskState:

@solver
def instantiated_basic_agent(
max_steps: int = 10,
max_steps: int = 100,
model_override: str | Model | None = None,
**tool_options,
):
Expand Down
2 changes: 1 addition & 1 deletion solvers/react/demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ uv run --project "solvers/react" --python 3.11 --frozen -- astabench eval \
--solver agent_baselines/solvers/react/basic_agent.py@instantiated_basic_agent \
--model openai/gpt-4.1-nano \
--limit 1 \
-S max_steps=10 \
-S max_steps=100 \
-S with_search_tools=0 -S with_table_editor=0 -S with_report_editor=0 -S with_thinking_tool=0 \
"$@"
Loading