AI Agent (Tools)
LLM に目標を与え、安全な組み込みツール(電卓、現在時刻、オプションの Web 取得)を呼び出しながら段階的に推論させ、回答を生成させます。
AIAIAgent
概要
LLM に目標を与え、安全な組み込みツール(電卓、現在時刻、オプションの Web 取得)を呼び出しながら段階的に推論させ、回答を生成させます。
Give the LLM a goal and let it reason step-by-step, calling safe built-in tools (calculator, current time, optional web fetch) until it produces an answer.
パラメータ
| パラメータ | 型 | 必須 | 既定値 | 説明 |
|---|---|---|---|---|
| API base URL | string | 必須 | http://localhost:11434/v1 | OpenAI-compatible base. Default = local Ollama (offline). 変数に対応 |
| API key (blank for local) | string | 任意 | Bearer token for cloud providers. 変数に対応 | |
| Model | string | 必須 | llama3 | 例: llama3 変数に対応 |
| Goal / task | multiline | 必須 | 例: What is 18% of 2450, and what's today's date? 変数に対応 | |
| System prompt (optional) | multiline | 任意 | 例: You are a careful analyst. 変数に対応 | |
| Allow web fetch | dropdownNo · Yes | 任意 | No | When Yes, the agent may fetch a public URL via the web_get tool. Leave No to keep the run fully local. |
| Max reasoning steps | number | 任意 | 5 | Safety cap on tool-call rounds. |
| Timeout (seconds) | number | 任意 | 180 | |
| Store answer in | variable | 必須 | 例: answer |