Back to Models

flash image 3.1

google/flash-image-3.1 Try in Playground
Google Image Generation

Description

flash image 3.1 by Google. This model supports image capabilities. Main use: Image Generation.

Specifications

Input Modalities:
Text, Image
Output Modalities:
Image
Main Use:
Image Generation

Pricing

Per Image (1MP) Cost:
0.10000000 Credits
Images (1MP) per credit:
10.00

Usage Example

const { Client } = require('ai-proxy-sdk');

const client = new Client({
  consumerKey: process.env.BITMESH_CONSUMER_KEY,
  consumerSecret: process.env.BITMESH_CONSUMER_SECRET
});

const response = await client.images.generate({
  prompt: 'Flying car',
  model: 'google/flash-image-3.1',
  width: 1024,
  height: 1024,
  seed: 22,
  n: 1,
  steps: 20
});