{
"messages": [
{
"role": "user",
"content": "你好呀?"
}
],
"model": "gemini-2.5-pro",
"temperature": 0.1,
"top_p": 1.0,
"stream": true,
"extra_body": {
"google": {
"thinking_config": {
"include_thoughts": true,
"thinkingBudget": 1024
}
}
}
}curl --location --request POST 'https://code0.ai/v1/chat/completions' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"messages": [
{
"role": "user",
"content": "你好呀?"
}
],
"model": "gemini-2.5-pro",
"temperature": 0.1,
"top_p": 1.0,
"stream": true,
"extra_body": {
"google": {
"thinking_config": {
"include_thoughts": true,
"thinkingBudget": 1024
}
}
}
}'{}