All models
See the code
Groq / Model reference
Llama 4 Scout 17B
Groq model available through the Celeste SDK. Explore its supported operations and parameters.
Model ID
meta-llama/llama-4-scout-17b-16e-instructWhat it can do.
Streamingceleste.text.generateGenerate textceleste.images.analyzeUnderstand mediaParameters.
Supported controls from Celeste’s model registry. Values and availability differ between models.
| Parameter | Accepted values |
|---|---|
temperature | 0 – 2Step: 0.01 |
max_tokens | 1 – 8192Step: 1 |
output_schema | Pydantic BaseModel |
image | Image artifacts |
tools | List 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.
import celesteresponse = 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.