Skip to main content
All models

Google / Model reference

Gemini 3.1 Flash Lite Preview

Google model available through the Celeste SDK. Explore its supported operations and parameters.

See the code
Model IDgemini-3.1-flash-lite-preview

What it can do.

Streaming
celeste.text.generateGenerate text
celeste.images.analyzeUnderstand media
celeste.audio.analyzeUnderstand media
celeste.videos.analyzeUnderstand media

Parameters.

Supported controls from Celeste’s model registry. Values and availability differ between models.

Gemini 3.1 Flash Lite Preview parameters and constraints
ParameterAccepted values
temperature0 – 2
max_tokens1 – 65536
thinking_level
lowhigh
toolsList of tool definitions
output_schemaPydantic BaseModel
imageImage artifacts
videovideos
audioaudio

Start with a few lines

Put it to work.

Use your provider credentials. Call the model through the SDK and build around its output.

Generate
import celeste
response = await celeste.text.generate(
model="gemini-3.1-flash-lite-preview",
prompt="Write a project brief for a neighborhood repair café." )
print(response.content)

This example uses text.generate. Explore the quickstart for installation and authentication.