Serverless training is currently in private preview and access is gated per account. Request access and mention “serverless training.”
What you need
- Install the SDK (same one as the dedicated path, no separate console flow):
pip install --pre "fireworks-ai[training]" - For the runnable example, clone the cookbook:
git clone https://github.com/fw-ai/cookbook && pip install -e ./cookbook/training - Point at the serverless endpoint:
base_url="https://api.fireworks.ai/training/v1/serverless" - Pick a base model enabled for serverless training on your account. Availability changes during private preview; verify it before launch.
- Set your API key and run the Quickstart below.
What is serverless training?
You write the training loop, for supervised fine-tuning or reinforcement learning, and Fireworks runs the forward pass, backward pass, and optimizer on remote GPUs, then serves your latest weights for sampling in the same session. The quickstart shows the exact client setup and operation order. The complete implementation lives in the cookbook’sserverless_rl example.
What you can run
Supervised Fine-Tuning (SFT)
Run the loop with a cross-entropy loss over your labeled data.
Reinforcement Learning (RL)
Sample completions from the current adapter, score them with your own reward function, and train with an importance-sampling loss (GRPO-style). This is the primary serverless use case.
When to use dedicated
Use Dedicated Training when you need full-parameter training, broader model or method support, explicit resource lifecycle control, or sustained utilization. See the canonical serverless versus dedicated comparison.Core concepts
Session.create_lora_training_client(base_model, rank) attaches you to a pooled trainer for that base model. That attachment is your training session (service.training_session_id) — your LoRA state lives there.
Run. The training client is your run (training_client.run_id). One run is one training trajectory: the forward_backward and optim_step calls plus the checkpoints you save.
LoRA adapter. Serverless is LoRA only. Pass a positive rank (e.g. rank=8); base weights stay frozen and shared across the pool, and you train an adapter on top.
Checkpoint / snapshot. save_weights_for_sampler(name) writes your current adapter weights and returns a snapshot path. That path is a public sampler identity, not a raw storage URI — hand it to the sampler to serve exactly those weights.
Sampling. create_sampling_client(model_path=snapshot, tokenizer=...) returns a sampler bound to that snapshot through the completions API (/inference/v1/completions). For multi-turn rollouts, session-affinity headers pin an episode to one replica so the KV cache is reused across turns (see RL rollout integration). The sampler runs in the same session, so there’s no deployment to create or hot-load.
Quickstart
Step 1: Create a key, install, and authenticate
Create an API key in the Fireworks dashboard (click Create API key and store it somewhere safe), or runfirectl api-key create. Then install the SDK and export the key:
Step 2: Run the complete serverless RL example
The cookbook includes its dataset, reward, loop, metrics, and cleanup behavior:examples/serverless_rl/countdown_rl.py and reduce steps, group_size,
prompt_groups_per_step, and max_sample_tokens before execution.
The remaining snippets explain the core calls used by that runnable example.
Step 3: Connect to the serverless session
ts-, serverless routing is working. If the base URL does not end in /training/v1/serverless, sampling errors out.
Step 4: Train, checkpoint, and sample
The complete example definesdatums, tinker, tokenizer, prompt, and
params, and rejects prompt plus completion lengths above max_seq_len. The
excerpt below shows the operation order:
Reinforcement learning example
The end-to-end serverless RL pattern is the standard GRPO / importance-sampling loop: each step saves the current adapter, rolls out a batch of prompts through a sampler bound to that snapshot, scores completions with your reward function, turns group-relative advantages into training datums, and takes one optimizer step. Track reward over time; improvement depends on the task, data, reward function, and configuration. Use the complete cookbookserverless_rl example rather than rebuilding the loop from this page. For a supervised loop, use cross-entropy loss. For the broader RL loss menu and dedicated provisioning, see the cookbook RL recipes.
Pricing
Serverless training is billed per token. Available models, meter definitions, and rates can change during private preview. Verify current availability and pricing before launch.Supported models and limits
Models
Use a base model enabled for serverless training on your account. Serverless is LoRA only. For full-parameter training or a model not enabled on the shared pool, use Dedicated Training.Capacity and rate limits (private preview)
- Concurrent runs: The default quota is 8, although account overrides may differ. Slots are released when runs become terminal after session expiration.
- Request and token limits: Contact Fireworks for the current limits on your account.
- Shared-pool capacity: if the pool is full,
create_lora_training_clientreturns an out-of-capacity error; retry, or switch to the dedicated path.
Behavior to know
- Set
max_seq_lenexplicitly. Serverless has no dedicated instance to infer sequence length from. - Cross-run checkpoint resume is not yet supported. A checkpoint saved during a run can only be resumed by that same run. Forking a new run from a prior run’s checkpoint (Tinker’s
create_training_client_from_state) is dedicated-only today. - Serving your trained adapter. Sample in-session during the run. To serve afterward, deploy the adapter on a dedicated or preemptible deployment; serverless per-token serving of your own fine-tuned LoRA is not available yet.
Next steps
- Serverless RL cookbook example: runnable serverless loop
- Choose infrastructure: compare serverless and dedicated
- Dedicated Training: the provisioned path from setup through teardown
- Training and Sampling: dedicated lifecycle internals
- Loss Functions: built-in and custom losses
- The Cookbook: ready-to-run recipes, including
serverless_rl