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. Main use: Chat, Small & Fast, Vision.
Specifications
- Context Length:
- 32768
- Parameters:
- 4B
- Input Modalities:
- Text, Image
- Output Modalities:
- Text
- Main Use:
- Chat, Small & Fast, Vision
Pricing
- Input Cost:
- 0.12 Credits / 1M tokens
- Output Cost:
- 0.24 Credits / 1M tokens
Usage Example
const { Client } = require('ai-proxy-sdk');
const client = new Client({
consumerKey: process.env.BITMESH_CONSUMER_KEY,
consumerSecret: process.env.BITMESH_CONSUMER_SECRET,
baseUrl: process.env.BITMESH_API_BASE_URL || 'https://api.bitmesh.ai'
});
const response = await client.chat.completions.create({
model: 'google/gemma-3n-e4b-it',
messages: [
{ role: 'system', content: 'You are a helpful assistant.' },
{ role: 'user', content: 'What are some fun things to do with AI?' }
],
max_tokens: 1000
});