Models / Chat / Gemma 3 27B
Gemma 3 27B
Chat
Code
Vision
Lightweight model with vision-language input, multilingual support, visual reasoning, and top-tier performance per size.
Deploy Gemma 3 27B

New
API Usage
Endpoint
google/gemma-3-27b-it
RUN INFERENCE
curl -X POST https://api.together.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $TOGETHER_API_KEY" \
-d '{
"model":"google/gemma-3-27b-it",
"messages":[{
"role":"user",
"content":[
{"type":"image_url","image_url":{"url":"https://huggingface.co/datasets/patrickvonplaten/random_img/resolve/main/yosemite.png"}},
{"type":"text","text":"Describe this image."}
]
}]
}'
JSON RESPONSE
RUN INFERENCE
from together import Together
client = Together()
response = client.chat.completions.create(
model="google/gemma-3-27b-it",
messages=[
{
"role": "user",
"content": [
{
"type": "image_url",
"image_url": {"url": "https://huggingface.co/datasets/patrickvonplaten/random_img/resolve/main/yosemite.png"}
},
{
"type": "text",
"text": "Describe this image."
}
]
}
]
)
print(response.choices[0].message.content)
JSON RESPONSE
RUN INFERENCE
import Together from "together-ai";
const together = new Together();
const response = await together.chat.completions.create({
model: "google/gemma-3-27b-it",
messages: [{
"role": "user",
"content": [
{
"type": "image_url",
"image_url": {"url": "https://huggingface.co/datasets/patrickvonplaten/random_img/resolve/main/yosemite.png"}
},
{
"type": "text",
"text": "Describe this image."
}
]
}]
});
console.log(response.choices[0].message.content);
JSON RESPONSE
Model Provider:
Type:
Chat
Variant:
Parameters:
27B
Deployment:
✔️ Dedicated
Quantization
Context length:
64K
Pricing:
Run in playground
Deploy model
Quickstart docs
Quickstart docs
How to use Gemma 3 27B
Model details
Prompting Gemma 3 27B
Applications & Use Cases
Looking for production scale? Deploy on a dedicated endpoint
Deploy Gemma 3 27B on a dedicated endpoint with custom hardware configuration, as many instances as you need, and auto-scaling.
