run_agent
Complete multi-step tasks using an autonomous agent that iteratively reasons and utilizes available tools like calculator, text, unit conversion, and web search.
Instructions
Run a mini ReAct agent that can autonomously use all available tools to complete a task. The agent reasons step-by-step: it thinks about what to do, selects a tool, executes it, observes the result, and continues until it has enough information to give a final answer.
The agent supports multi-step tasks. Examples:
"Calculate 15 * 23 + sqrt(144)"
"Convert 100 cm to inches and also generate a UUID"
"What time is it in Asia/Shanghai?"
"Generate a 20-character password and tell me today's date"
"Search the web for the latest news about AI agents"
"Extract the content from https://example.com/article"
Available tool categories:
Built-in: calculator, text_stats, text_transform, unit_convert, datetime_info, random_gen
AnySearch (if connected): anysearch_search, anysearch_batch_search, anysearch_extract, anysearch_get_sub_domains
If LLM_API_KEY + LLM_BASE_URL + LLM_MODEL are all set (no defaults), the agent uses LLM-powered reasoning. Otherwise it uses a rule-based pattern matching engine.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | The task for the agent to complete. Be specific about what you want. |