Authorization: Bearer ********************{
"model": "gemini-3-flash-preview",
"messages": [
{
"role": "user",
"content": "今天新闻"
}
],
"tools": [
{
"type": "function",
"function": {
"name": "googleSearch"
}
}
]
}curl --location --request POST 'https://api.huandutech.com/v1/chat/completions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gemini-3-flash-preview",
"messages": [
{
"role": "user",
"content": "今天新闻"
}
],
"tools": [
{
"type": "function",
"function": {
"name": "googleSearch"
}
}
]
}'{
"id": "string",
"object": "string",
"created": 0,
"choices": [
{
"index": 0,
"message": {
"role": "string",
"content": "string"
},
"finish_reason": "string"
}
],
"usage": {
"prompt_tokens": 0,
"completion_tokens": 0,
"total_tokens": 0
}
}