Gemma 4 26B A4B
Chatgemma-4-26B-A4B-it
Gemma 4 26B A4B on FlexAI: Google LLM (Multimodal), Gemma Terms license, served via the OpenAI-compatible Token Factory at the live market-tracked rate.
Pricing
Input
$0.06 / M tokens
Output
$0.3 / M tokens
Cached input
$0.009 / M tokens
Context
256K tokens
API endpoint
/v1/chat/completions
Compatibility
OpenAI
Parameters
26B MoE (4B active)
License
Gemma Terms
Hardware
H100
Quantization
BF16
Estimate your monthly cost
M tokens
M tokens
Cache hit rate25%
Share of input tokens served from prompt cache: repeated system prompts, long documents, and multi-turn context.
7.5M × $0.06/M input$0.45
2.5M × $0.009/M cached input$0.02
2M × $0.3/M output$0.6
Estimated monthly cost$1.07
Saved vs. no caching$0.13 (11%)
Estimate only, at the current market-tracked rate. Usage-based; no minimums.
Get an API keyQuick Start
gemma-4-26B-A4B-it
from openai import OpenAI
client = OpenAI(base_url="https://tokens.flex.ai/v1", api_key="your-api-key")
response = client.chat.completions.create(
model="gemma-4-26B-A4B-it",
messages=[{
"role": "user",
"content": [
{"type": "text", "text": "What's in this image?"},
{"type": "image_url", "image_url": {"url": "https://example.com/photo.jpg"}},
],
}],
)
print(response.choices[0].message.content)