Setup
Install the Baseten CLI and sign in, then install the Pythonrequests library.
Install and sign in to BasetenFor other platforms or a specific version, see the Baseten CLI install reference.
- macOS or Linux
- Windows
Terminal
Install requests
uvx truss login --browser and deploy with uvx truss push.
Pick the model you want to deploy. Each tab is a self-contained recipe.
- dev
- schnell
black-forest-labs/FLUX.1-dev is a 12B-parameter diffusion transformer model.This preset serves FLUX.1 dev on H100 40GB, tuned for text-to-image throughput.Then create a file named You should see output similar to:
Hardware
H100_40GB
Write the config
Create and move into the project directory:config.yaml and paste the following:config.yaml
Deploy
Push the config to Baseten with the Baseten CLI, or with the Truss CLI if you prefer it:baseten model push prints your model ID (abc1d2ef in the example). The examples below use it wherever you see {model_id}, and read your API key from the BASETEN_API_KEY environment variable.Call the model
Use the/predict endpoint to generate your model’s images.The deployment returns the generated image as base64-encoded bytes. Decode the response to write the image to disk.- Python
- cURL
main.py
Next steps
Call your model
Endpoint anatomy, authentication, and sync versus async inference
Autoscaling
Scale replicas with traffic, including scale to zero