llm_config_id
.agent_id
must be specified in the path to identify which agent's configuration is being updated.llm_config_id
indicating which LLM configuration to apply.curl --location -g --request PUT 'https:///v2/api/agent/246/config' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"llm_config_id": 1
}'
{
"success": true,
"message": "Agent configuration updated",
"data": {
"id": 8,
"model_name": "GPT 4o",
"model_deployment": "gpt4-o"
}
}