curl --request PATCH \
--url https://api.eden.art/v2/agents/{agentId} \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '{
"name": "<string>",
"key": "<string>",
"description": "<string>",
"image": "<string>",
"public": true,
"models": [
{
"lora": "<string>",
"use_when": "<string>"
}
],
"persona": "<string>",
"isPersonaPublic": true,
"greeting": "<string>",
"knowledge": "<string>",
"voice": "<string>",
"suggestions": [
{
"label": "<string>",
"prompt": "<string>"
}
],
"owner_pays": "off",
"tools": {},
"llm_settings": {
"model_profile": "low",
"thinking_policy": "auto",
"thinking_effort_cap": "low",
"thinking_effort_instructions": "<string>"
}
}'