Poe API
Gemma 4 26B A4B is built for developers who need scalable performance without sacrificing core capabilities.Crucially, it retains the massive 256K-token context window of the 31B model, making it highly competitive for long-context RAG and processing extensive, image-rich document datasets. It fully supports the series' core innovations: native Thinking mode for advanced logic, Interleaved Multimodal Input for dynamic text-image workflows, and flawless document/UI parsing. Equipped with native Function Calling and robust coding proficiencies, the 26B A4B is the ideal, cost-effective engine for powering real-world agentic workflows, visual automation, and global applications across its 140+ pre-trained languages.
File Support: Text, Markdown, Image and PDF files
Context window: 262k tokens
Powered by a server managed by @novitaai. Learn more
- OFFICIAL
- NEW
Build with Gemma-4-26B-A4B using the Poe API
Start by creating an API key, for use with any bot on Poe:
Code samples
python
import openai
client = openai.OpenAI(
api_key = "YOUR_POE_API_KEY", # or os.getenv("POE_API_KEY")
base_url = "https://api.poe.com/v1",
)
chat = client.chat.completions.create(
model = "gemma-4-26b-a4b",
messages = [{
"role": "user",
"content": "Create a nutritious, high-protein recipe using chicken, broccoli, and sweet potatoes"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.