All models
See the code
Google / Model reference
Gemini 3.1 Flash Lite Preview
Google model available through the Celeste SDK. Explore its supported operations and parameters.
Model ID
gemini-3.1-flash-lite-previewWhat it can do.
Streamingceleste.text.generateGenerate textceleste.images.analyzeUnderstand mediaceleste.audio.analyzeUnderstand mediaceleste.videos.analyzeUnderstand mediaParameters.
Supported controls from Celeste’s model registry. Values and availability differ between models.
| Parameter | Accepted values |
|---|---|
temperature | 0 – 2 |
max_tokens | 1 – 65536 |
thinking_level | lowhigh |
tools | List of tool definitions |
output_schema | Pydantic BaseModel |
image | Image artifacts |
video | videos |
audio | audio |
Start with a few lines
Put it to work.
Use your provider credentials. Call the model through the SDK and build around its output.
import celesteresponse = 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.