Gemini 2.5 Pro is Google’s state-of-the-art AI model designed for advanced reasoning, coding, mathematics, and scientific tasks. It employs “thinking” capabilities, enabling it to reason through responses with enhanced accuracy...
# Запрос к API VEGA через google/gemini-2.5-pro-preview-05-06
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "google/gemini-2.5-pro-preview-05-06",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'