Update or create an agent
POST/agents/:agentId/set
Updates an existing agent or creates a new one with the specified configuration
Request
Path Parameters
ID of the agent to update
- application/json
Body
required
Unique identifier for the character
Name of the character
The model provider to use (e.g., "openai", "anthropic")
Short biography of the character
Extended lore and background information
Example messages for character training
Example posts for character training
Topics the character is knowledgeable about
Personality traits of the character
Knowledge base for the character
Plugins used by the character
Character-specific settings
Character's communication style
System prompt for the character
Responses
- 200
- 400
- 500
- application/json
- Schema
- Example (from schema)
Schema
characterobject
Unique identifier for the character
Name of the character
The model provider to use (e.g., "openai", "anthropic")
Short biography of the character
Extended lore and background information
Example messages for character training
Example posts for character training
Topics the character is knowledgeable about
Personality traits of the character
Knowledge base for the character
Plugins used by the character
Character-specific settings
Character's communication style
System prompt for the character
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"character": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"modelProvider": "string",
"bio": "string",
"lore": [
"string"
],
"messageExamples": [
"string"
],
"postExamples": [
"string"
],
"topics": [
"string"
],
"adjectives": [
"string"
],
"knowledge": [
"string"
],
"plugins": [
"string"
],
"settings": {},
"style": {},
"system": "string"
}
}
- application/json
- Schema
- Example (from schema)
Schema
false
{
"success": false,
"message": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
false
{
"success": false,
"message": "string"
}