{
"model": "gemini-3-flash-preview",
"messages": [
{
"role": "user",
"content": "今天新闻"
}
],
"tools": [
{
"type": "function",
"function": {
"name": "googleSearch"
}
}
]
}curl --location --request POST '/chat/completions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gemini-3-flash-preview",
"messages": [
{
"role": "user",
"content": "今天新闻"
}
],
"tools": [
{
"type": "function",
"function": {
"name": "googleSearch"
}
}
]
}'{}