Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.atthene.com/llms.txt

Use this file to discover all available pages before exploring further.

Import an agent configuration from a YAML string to update the current agent.

Path Parameters

id
string
required
The UUID of the agent to update.

Request Body

yaml_content
string
required
The complete YAML configuration string to import.
curl -X POST https://api-be.atthene.com/api/v1/agent/{id}/import_yaml/ \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"yaml_content": "name: My Updated Agent\narchitecture: llm_agent"}'

Response

Returns the updated agent configuration.