{
"prompt": [
{
"role": "system",
"content": "帮我查询用户ID为123的信息"
}
],
"tools": [
{
"name": "查询用户信息",
"description": "根据用户ID查询用户详细信息",
"inputSchema": {
"type": "string",
"description": "string",
"example": "string",
"enumValues": [
"string"
],
"items": {},
"properties": {
"property1": {},
"property2": {}
},
"required": [
"string"
],
"additionalProperties": false
}
}
]
}curl --location --request POST 'https://open.lcchunyi.com/v1test/ccrc/llm/openai/function-calling' \
--header 'tenantId;' \
--header 'Content-Type: application/json' \
--data-raw '{
"prompt": [
{
"role": "system",
"content": "帮我查询用户ID为123的信息"
}
],
"tools": [
{
"name": "查询用户信息",
"description": "根据用户ID查询用户详细信息",
"inputSchema": {
"type": "string",
"description": "string",
"example": "string",
"enumValues": [
"string"
],
"items": {},
"properties": {
"property1": {},
"property2": {}
},
"required": [
"string"
],
"additionalProperties": false
}
}
]
}'{
"code": "string",
"message": "string",
"data": {
"name": "查询用户信息",
"arguments": {
"userId": "123"
}
},
"success": true
}