Skip to main content
All models

xAI / Model reference

Grok 4.20 Beta 0309 Non Reasoning

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

See the code
Model IDgrok-4.20-beta-0309-non-reasoning

What it can do.

Streaming
celeste.text.generateGenerate text

Parameters.

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

Grok 4.20 Beta 0309 Non Reasoning parameters and constraints
ParameterAccepted values
temperature0 – 2
max_tokens1 – 30000
toolsList of tool definitions
output_schemaPydantic BaseModel

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="grok-4.20-beta-0309-non-reasoning",
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.