Back to Models

Gemma 3N E4B Instruct

google/gemma-3n-e4b-it
Google Chat

Description

Gemma 3N E4B Instruct by Google. This model supports chat capabilities.

Specifications

Context Length:
32768
Parameters:
4B

Pricing

Input Cost:
$0.0040/100K tokens
Output Cost:
$0.0080/100K tokens

Usage Example

import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.yourproxy.com/v1",
  apiKey: process.env.PROXY_KEY,
});

const completion = await client.chat.completions.create({
  model: "google/gemma-3n-e4b-it",
  messages: [{ role: "user", content: "Hello!" }],
});