Skip to content

Gemma 4 12B

An open source model from the Gemma family (Google), with 12B parameters — lightweight and fast. It’s the model on the Free plan, ideal for prototypes and low-latency responses.

idgemma-4-12b
TypeChat / text
Available onAll plans (includes Free)
  • Prototype and test your integration at no cost (Free plan)
  • Short responses, classification, simple extraction
  • Latency- and volume-sensitive use cases

For deeper responses or reasoning, use Qwen3.6 35B.

resp = client.chat.completions.create(
model="gemma-4-12b",
messages=[{"role": "user", "content": "Classify as positive or negative: 'I loved the product'."}],
)
print(resp.choices[0].message.content)