Creates a new agent on the Orkeia AI platform.
POST https://gateway.orkeia.ai/agents
| Field | Type | Description |
|---|---|---|
| name | string | Name of the agent |
| enabled | boolean | Whether the agent is active |
| model | string / Model | ID of the model or AI model |
| auto | boolean | Whether the agent is active |
| reasoning | boolean | Whether the agent has permission to process thought |
| publisher | string | ID of who created the agent |
| temperature | number (0.0 to 1.0) | Controls the randomness of the model’s responses. Values closer to 0 tend to be more deterministic, while closer to 1 tend to be more variable. |
| role | string | Role that the agent will play |
| objective | string | Objective of the agent in each interaction |
| referencies | string | Textual reference that the agent will use |
| can.delegate | boolean | Can the agent delegate tasks? |
| can_code | boolean | Can the agent program? |
| multimodal | boolean | Does the agent have the ability to interact with multiple modes (image, text, audio)? |
| sectors | array(String) | Array of sectors that will use the agent |
| tools | array(String) / array(Tools) | Array of tools that the agent can use |
| knowledgeBases | array(String) / array(KnowledgeBase) | Array of knowledge bases that can be used by the agent |