Skip to main content
All models

Groq / Model reference

Llama 4 Scout 17B

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

See the code
Model IDmeta-llama/llama-4-scout-17b-16e-instruct

What it can do.

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

Parameters.

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

Llama 4 Scout 17B parameters and constraints
ParameterAccepted values
temperature02Step: 0.01
max_tokens18192Step: 1
output_schemaPydantic BaseModel
imageImage artifacts
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="meta-llama/llama-4-scout-17b-16e-instruct",
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.