POST
/
api
/
v1
/
agent-config
Update Agent Config
curl --request POST \
  --url https://services.staging.app.dados.rio/eai-agent/api/v1/agent-config \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "agent_type": "agentic_search",
  "memory_blocks": [
    {}
  ],
  "tools": [
    "<string>"
  ],
  "model_name": "<string>",
  "embedding_name": "<string>",
  "update_agents": true,
  "tags": [
    "<string>"
  ],
  "metadata": {}
}'
{
  "success": true,
  "config_id": "<string>",
  "agents_updated": {},
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Successful Response

The response is of type object.