The Yaochi Agent large model interface provides capabilities for question answering and performance diagnosis.
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 query. |
Are there any issues or abnormalities with my instance rm-xxx? |
| SessionId |
string |
No |
Optional. The session ID in UUID format. Omitting this parameter creates a new session. To maintain conversational context, pass the same session ID in all subsequent requests. |
123e4567-e89b-12d3-a456-xxxxxxxxxxxx |
| Source |
string |
No |
Optional. The cloud product to query. The default value is Valid values:
|
yaochi |
| ExtraInfo |
string |
No |
Optional. Additional information as a JSON string. |
{} |
Response elements
|
Element |
Type |
Description |
Example |
|
object |
The response object. |
||
| Content |
string |
The response content. |
xxx |
| RequestId |
string |
The request ID. |
7172BECE-588A-5961-8126-C216E16B**** |
| ReasoningContent |
string |
The model's reasoning content. |
xxx |
| Product |
string |
The cloud product type. |
polardb |
| FunctionCall |
array<object> |
A list of tool calls. |
|
|
object |
A single tool call. |
||
| Name |
string |
The name of the tool to call. |
sqlReview |
| Arguments |
string |
The arguments for the tool call, formatted as a JSON string. |
{"arg": "xxx"} |
| Id |
string |
A unique ID for the tool call. |
12345 |
| Status |
string |
The current status of the tool call. |
RUNNING |
| UiFunctionCall |
array<object> |
A list of card tool calls used to render interactive UI cards. |
|
|
object |
A single UI function call. |
||
| ArgsText |
string |
The arguments for the card tool, formatted as a JSON string. |
{"arg": "xxx"} |
| ToolName |
string |
The name of the card tool. |
card |
| SessionId |
string |
The session ID. This value matches the |
123e4567-e89b-12d3-a456-xxxxxxxxxxxx |
| QueryId |
string |
The query ID. This value matches the |
123e4567-e89b-12d3-a456-xxxxxxxxxxxx |
| SubAgentCall |
array<object> |
A list of sub-agent call details. |
|
|
object |
A single sub-agent call. |
||
| SubAgentId |
string |
The unique ID for the sub-agent. |
12345 |
| SubAgentName |
string |
The name of the sub-agent. |
XX Agent |
| Status |
string |
The status of the sub-agent call. |
running |
| ParentId |
string |
The parent ID. This parameter is returned only for messages from a sub-agent. In such cases, the value is the sub-agent's 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.