Skip to main content
GET
/
v1
/
agents
/
agents
/
{agentId}
/
evaluation-config
Get evaluation configuration for an agent
curl --request GET \
  --url https://api.devic.ai/v1/agents/agents/{agentId}/evaluation-config \
  --header 'Authorization: Bearer <token>'
{
  "evaluatorModel": "<string>",
  "enabled": true,
  "threshold": 0.5
}

Authorizations

Authorization
string
header
required

Use JWT token for authentication

Path Parameters

agentId
string<uuid>
required

UUID of the agent whose evaluation config should be retrieved

Response

Evaluation configuration retrieved successfully

evaluatorModel
string

Identifier for the model used to evaluate the agent

enabled
boolean
default:true

Whether automatic evaluation is enabled for this agent

threshold
number<float>

Threshold score for flagging evaluations

Required range: 0 <= x <= 1