Gemma 3 introduces multimodality, supporting vision-language input and text outputs. It handles context windows up to 128k tokens, understands over 140 languages, and offers improved math, reasoning, and chat capabilities,...
# Запрос к API VEGA через google/gemma-3-27b-it
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "google/gemma-3-27b-it",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'