Provides the Alibaba Cloud ApsaraDB Agent foundation model capability interface for AI chat, performance diagnostics, and other features.
Try it now
Test
RAM authorization
|
Action |
Access level |
Resource type |
Condition key |
Dependent action |
|
hdm:GetYaoChiAgent |
get |
*All Resource
|
None | None |
Request syntax
POST /agent HTTP/1.1
Request parameters
|
Parameter |
Type |
Required |
Description |
Example |
| Query |
string |
Yes |
The natural language description of the question. |
Are there any issues or abnormalities with my instance rm-xxx? |
| SessionId |
string |
No |
The session ID in UUID string format. This parameter is optional. If you do not specify this parameter, a new session is created. To maintain context across a conversation, use the same session ID. |
123e4567-e89b-12d3-a456-xxxxxxxxxxxx |
| Source |
string |
No |
The cloud service source that specifies which cloud service the question belongs to. This parameter is optional. Default value: yaochi. Valid values:
|
yaochi |
| ExtraInfo |
string |
No |
The additional information in JSON string format. This parameter is optional. |
{} |
Response elements
|
Element |
Type |
Description |
Example |
|
object |
Schema of Response |
||
| Content |
string |
The response content. |
xxx |
| RequestId |
string |
The request ID. |
7172BECE-588A-5961-8126-C216E16B**** |
| ReasoningContent |
string |
The reasoning content of the model. |
xxx |
| Product |
string |
The cloud service type. |
polardb |
| FunctionCall |
array<object> |
The tool calling invoke list. |
|
|
object |
The list of strings. |
||
| Name |
string |
The name of the called tool. |
sqlReview |
| Arguments |
string |
The parameters of the called tool. |
{"arg": "xxx"} |
| Id |
string |
The tool ID. |
12345 |
| Status |
string |
The tool calling invoke status. |
RUNNING |
| UiFunctionCall |
array<object> |
The card tool calling invoke list. |
|
|
object |
The list of strings. |
||
| ArgsText |
string |
The parameters of the card tool. |
{"arg": "xxx"} |
| ToolName |
string |
The name of the card tool. |
card |
| SessionId |
string |
The session ID. This value is the same as the SessionId request parameter. |
123e4567-e89b-12d3-a456-xxxxxxxxxxxx |
| QueryId |
string |
The query ID. This value is the same as the QueryId request parameter. |
123e4567-e89b-12d3-a456-xxxxxxxxxxxx |
| SubAgentCall |
array<object> |
The list of sub-agent call information. |
|
|
object |
The list of strings. |
||
| SubAgentId |
string |
The sub-agent ID. |
12345 |
| SubAgentName |
string |
The sub-agent name. |
XX Agent |
| Status |
string |
The sub-agent status. |
running |
| ParentId |
string |
The ParentId field. This field exists only when the message is output by a sub-agent, and the value is the sub-agent ID. |
12345 |
Examples
Success response
JSON format
{
"Content": "xxx",
"RequestId": "7172BECE-588A-5961-8126-C216E16B****",
"ReasoningContent": "xxx",
"Product": "polardb",
"FunctionCall": [
{
"Name": "sqlReview",
"Arguments": "{\"arg\": \"xxx\"}",
"Id": "12345",
"Status": "RUNNING"
}
],
"UiFunctionCall": [
{
"ArgsText": "{\"arg\": \"xxx\"}",
"ToolName": "card"
}
],
"SessionId": "123e4567-e89b-12d3-a456-xxxxxxxxxxxx",
"QueryId": "123e4567-e89b-12d3-a456-xxxxxxxxxxxx",
"SubAgentCall": [
{
"SubAgentId": "12345",
"SubAgentName": "XX Agent",
"Status": "running"
}
],
"ParentId": "12345"
}
Error codes
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.