Google: Gemma 3 27B
GPU TEE
google/gemma-3-27b-it
Created 10/3/2025|54K context|$0.11/M input tokens|$0.40/M output tokens
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, including structured outputs and function calling. Gemma 3 27B is Google's latest open source model, successor to Gemma 2
Providers for Google: Gemma 3 27B
RedPill routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.
phala
Input Price
$0.11
Output Price
$0.40
Total Context
54K
API
RedPill provides an OpenAI-compatible completion API to all models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.
fetch("https://api.redpill.ai/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR-REDPILL-API-KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "google/gemma-3-27b-it",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
})
})