Skip to main content
All models

Groq / Model reference

Qwen 3 32B

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

See the code
Model IDqwen/qwen3-32b

What it can do.

Streaming
celeste.text.generateGenerate text

Parameters.

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

Qwen 3 32B parameters and constraints
ParameterAccepted values
temperature02Step: 0.01
max_tokens140960Step: 1
output_schemaPydantic BaseModel
toolsList of tool definitions

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="qwen/qwen3-32b",
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.