Create an agent
mistral_create_agentCreates a Mistral Agent (additive configuration). Management API: POST /v1/agents. Requires model and name; instructions, tools, completion_args, description and handoffs are optional.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Human-readable agent name. | |
| model | Yes | Model powering the agent, e.g. mistral-large-latest. | |
| tools | No | Tools available to the agent (passthrough objects, e.g. {type:'web_search'}). | |
| handoffs | No | Agent ids this agent may hand off to. | |
| description | No | Free-text description of the agent. | |
| instructions | No | System instruction prompt the agent follows. | |
| completion_args | No | Completion arguments (temperature, top_p, etc.) as a passthrough object. |