Read slime as a SGLang-native reinforcement-learning post-training system: Ray placement, Megatron training, Data Buffer contracts, asynchronous rollouts, agent hooks, and weight-sync failure boundaries.
Personalize this lesson
Adapt explanations and teaching visuals to your background and preferred voice.
A model can produce a promising answer and still learn from the wrong token sequence. In reinforcement-learning (RL) post-training, generation, reward computation, training, and weight updates form one moving system. A boundary bug can resemble a bad algorithm while its true cause is stale weights, a missing loss mask, or a rollout counted twice.
slime is an open framework for this loop. It places Ray around Megatron training and SGLang rollout servers, then connects them through a Data Buffer path that preserves prompts, sampled tokens, log probabilities, rewards, and grouping metadata. The project keeps those boundaries visible so a team can change its environment or agent without replacing the training kernel.[1][2]
This lesson follows one rollout from resource placement to a train step, then compares three timing models and three weight-sync paths. It also shows where agentic code enters, which failures the repository treats as first-class, and how to read the source without getting lost in launch scripts.
RL post-training is an online loop, not a static dataset pass. A prompt is sent to a policy, the policy samples one or more responses, an environment or verifier assigns reward, and a trainer changes the policy. The next prompt should see the new policy, but the system also needs enough overlap to keep GPUs busy. Long responses, tool calls, and failed environments make each iteration irregular.
Many teams respond by creating separate stacks for math, tool use, multi-turn agents, asynchronous sampling, and supervised fine-tuning. Those forks share a training bug only after someone copies a patch into every branch. slime takes a different boundary: keep the training and serving engines close to their upstream interfaces, and let users inject data-generation and reward logic at explicit hooks.[2]
The design has two deliberate opinions. Megatron owns high-throughput parameter updates. SGLang owns token generation behind a router. Ray owns placement and actor lifecycle. slime owns the handoff, the sample contract, the timing policy, and the checks that keep rollout data aligned with training.
The result isn't a universal agent framework. An agent can use a sandbox, search service, browser, tool server, or another model, but slime only needs its generated tokens and reward to arrive in the expected shape. That narrow contract is why the core can stay small while applications differ.
A rollout acts as a ledger entry. Its prompt and sampled response carry the sequence, while log probabilities, loss masks, reward, status, and rollout ID explain how that sequence should affect the next gradient update. Ray decides where the ledger work runs, while the Data Buffer keeps entries available until the trainer consumes a complete group.
The policy appears twice, but with different jobs. SGLang reads current weights and produces tokens quickly. Megatron reads those tokens and computes losses, gradients, and optimizer updates. A weight-sync operation is the commit that changes what SGLang will sample next. If that commit is delayed, data becomes off-policy by design, so the timing policy must be explicit.
The loop's arrow back to SGLang is more important than the boxes. A generated response isn't training data until its token IDs, response length, loss mask, reward, and status agree. A weight update isn't complete until the rollout engines have loaded the intended version and can serve again. The same diagram applies to a math verifier and a coding agent, even though their custom logic differs.
Ray placement groups reserve bundles such as one GPU plus one central processing unit (CPU) slot. slime builds one placement group and records which bundles belong to actor training and which belong to rollout. Sorting bundles by node and physical GPU keeps the logical rank order stable when Ray schedules a distributed cluster. The placement code is infrastructure, not model logic, but it decides whether a chosen sync path is legal.
With --colocate, actor training and rollout share a GPU allocation. The loop must offload one side before the other uses the memory. Without colocation, actor and rollout receive separate bundles and can overlap more freely, at the cost of extra hardware and a transport boundary for weights. Async training requires the decoupled shape in train_async.py; its first assertion rejects colocation.
| Topology | Ray allocation | What it enables | Main pressure |
|---|---|---|---|
| Colocated | One shared GPU range | Less hardware, simple local transfer | Memory eviction and blocked overlap |
| Decoupled | Actor and rollout ranges | Training and generation can overlap | Weight transport and shared storage |
| External rollout | Actor range plus external SGLang endpoints | Separate serving cluster or vendor | Endpoint, filesystem, and version contracts |
The same placement group can also describe server groups with different sizes. SGLang configuration supports regular, prefill, decode, and encoder groups, while Ray still accounts for every GPU slot. A heterogeneous layout changes where requests run, not what a Sample means.
slime passes Megatron arguments directly and prefixes installed SGLang arguments with --sglang-. That keeps tensor, pipeline, expert, context, and data parallel settings visible to Megatron, while serving flags stay available to SGLang. A launch file can therefore be specific about topology without adding a second configuration language for every upstream option.[3]
slime launches SGLang in server mode and keeps a router endpoint in front of the workers. A regular sample is tokenized, sent to /generate with return_logprob=True, and appended with response token IDs, per-token log probabilities, and metadata. The decoded text is useful for inspection, but the token IDs are the training source of truth.
The router also gives multi-turn sessions a stable route. When router_policy is consistent_hashing, slime sends X-SMG-Routing-Key from the sample session ID. One session can therefore return to the same worker and make better use of its prefix cache. This helps latency, but it doesn't make a session correct by itself. The trajectory manager still has to prove which tokens came from the model.
The default rollout function creates groups of samples, runs generation concurrently, computes rewards, and waits until the requested batch is valid. Dynamic sampling can discard groups whose reward variation is unhelpful. Partial rollout mode can abort requests and keep unfinished samples for a later pass. SGLang's /abort_request endpoint exists for this kind of early stop when oversampling has already found enough valid responses.[2]
There are two useful debug boundaries. --debug-rollout-only exercises SGLang and saves generated data without training. --debug-train-only loads the training side without starting rollout servers. If a reward or tokenization change breaks a run, those modes tell you whether the fault begins before or after the Data Buffer.
The logical Data Buffer is the bridge from prompt initialization to generated samples. A data source supplies groups, the rollout function fills them, and the manager converts the resulting Samples into tensors and schedules them across data-parallel ranks. The optional slime_plugins/rollout_buffer runs a separate HTTP service for agent trajectory generation, but it still returns the same kind of grouped evidence.
Each Sample carries more than text. tokens contains prompt and response IDs, response_length tells the trainer where generated tokens end, and loss_mask marks which response positions should contribute to loss. reward can come from a built-in math scorer or a custom verifier. status distinguishes completed, truncated, and aborted work. rollout_id ties sibling segments to one rollout for loss aggregation.
| Field | Producer | Training meaning | Failure if missing |
|---|---|---|---|
tokens | SGLang or custom adapter | Exact sequence for forward pass | Re-tokenization changes target |
rollout_log_probs | SGLang | Off-policy correction or diagnostics | Mismatch is invisible |
loss_mask | Custom adapter or converter | Which tokens receive gradient | Tool observations get trained |
reward | Verifier or reward model | Advantage input | No learning signal |
rollout_id | Data source or fan-out hook | One trajectory denominator | Segments count as separate rollouts |
status | Rollout worker | Complete, truncate, or requeue | Aborted work reaches training |
The manager normalizes rewards by group for estimators such as Group Relative Policy Optimization (GRPO) when configured, converts fields to CPU tensors, and computes a data-parallel schedule. It can split a compact agent rollout into multiple Samples, but all siblings must share one rollout_id. That invariant prevents a long trajectory from gaining extra weight merely because context compaction created more segments.
An external rollout buffer adds another boundary. Its generators write items over HTTP, group them by instance ID, and expose valid groups to the trainer. If the service loses a process or clears temporary data, the trainer may still be healthy while its next batch is empty. Treat buffer availability, group completeness, and metadata freshness as separate health signals.
Megatron receives the scheduled token tensors from Ray's object store or tensor transport. Its actor workers initialize distributed process groups, create model and optimizer state, compute log probabilities, and run the chosen RL loss. A critic model can run alongside the actor, but GRPO-style paths can train without one when relative rewards provide the advantage signal.
The actor group exposes async_train, save_model, and update_weights. The name async_train refers to the Ray call returning references, not to a fully asynchronous RL policy. train.py still waits for those references before saving or updating rollout weights. Read the caller before inferring timing from a method name.
Megatron parallelism remains native. Tensor, pipeline, expert, context, and data parallel groups are created by Megatron, while slime converts gathered parameters to the format SGLang expects. The bridge can use raw conversion or a Megatron Bridge path. This reuse keeps optimizer and checkpoint behavior close to Megatron, but it also means version drift in either upstream engine can surface at the boundary.
The smallest useful inspection is a batch receipt:
1def trainable_positions(sample):
2 assert len(sample.loss_mask) == sample.response_length
3 assert sample.status == "COMPLETED"
4 return sum(sample.loss_mask)
5
6sample = {
7 "tokens": [101, 11, 12, 13],
8 "loss_mask": [1, 1, 1],
9 "response_length": 3,
10 "status": "COMPLETED",
11}
12print(trainable_positions(type("S", (), sample)()))Expected output is 3. The first token is prompt context, while the three response positions are eligible for loss. A real Sample also stores response text, reward, and log probabilities, but this tiny assertion catches a common adapter bug before a GPU run.
Timing controls how much new data is collected before a policy update and how much rollout work may overlap training. The names are easy to confuse, so tie each one to a concrete loop in the repository.
train.py asks the RolloutManager for one rollout, waits for its data, trains on it, and then calls actor_model.update_weights(). If rollout and training are colocated, it can offload memory between those phases. The next generation sees the updated actor after the sync completes. This path is easiest to reason about because one loop iteration has one visible policy version.
The cost is idle time. A slow verifier or one long response holds the batch open, and training can't use GPUs while generation is still collecting that batch. Dynamic sampling and partial aborts reduce some waste, but the loop remains round-bound.
train_async.py starts rollout_manager.generate.remote(next_id) before training the current rollout. Training and generation occupy separate GPU ranges, and a later update_weights_interval controls how often the actor waits for the in-flight generation before changing weights. The code explicitly drains that future before a sync so a server never sees parameters change mid-generation.
Async reduces idle time, but samples can be generated by an older policy. That staleness is a chosen property, not a hidden bug. Compare the rollout's weight version with the actor version in logs, and don't increase overlap until reward and Kullback-Leibler (KL) behavior stay within your experiment's contract.
The fully-async example uses train_async.py plus slime.rollout.fully_async_rollout.generate_rollout_fully_async. A process-wide thread owns an asyncio loop, keeps a fixed number of generate_and_rm_group tasks in flight, and draws new groups from the global data buffer as soon as slots open. Completed groups sit in an output queue until the next training call needs its target batch.
This worker decouples in-flight concurrency from one rollout's batch size. It sorts completed groups by sample index for deterministic handoff, requeues any group containing an aborted Sample, and doesn't support evaluation mode. A long-tail agent can continue while a later training step consumes already completed work, but policy staleness and queue backpressure become operational metrics.
| Mode | Generation boundary | Weight update point | Best fit | Main failure surface |
|---|---|---|---|---|
| Sync | Batch must finish before train | Every loop | Debugging and strict on-policy runs | Longest sample blocks all work |
| Async | Next batch starts during train | Interval, after future drain | Decoupled throughput | Stale policy or update race |
| Fully async | Warm worker spans boundaries | Caller-defined, with queue | Long-tail agent trajectories | Queue growth, abort requeue, no eval |
Training and rollout can use separate processes, hosts, or even GPU types. The actor therefore needs a transport that moves an exact parameter state to SGLang and a lifecycle that prevents requests from reading half an update. slime has three meaningful paths: full NCCL, full disk, and delta disk.
This is the default update-weight-mode=full with update-weight-transport=nccl. NCCL, the NVIDIA Collective Communications Library, carries the update. Training rank 0 pauses generation and flushes SGLang caches. Pipeline-parallel (PP) source ranks gather tensor-parallel (TP) and expert-parallel (EP) shards into Hugging Face (HF)-shaped chunks and broadcast those chunks to rollout engines. Engines resume only after the final chunk and any quantization post-processing complete. An actor-group lock prevents a competing update from opening another broadcast sequence.
Full NCCL has low coordination overhead when training and rollout share a compatible network and process setup. It isn't a disk artifact, so a restarted external engine can't replay the update without another transfer. Colocation also makes this path sensitive to memory pressure and CUDA interprocess communication (IPC) constraints.
Full disk uses update-weight-mode=full and update-weight-transport=disk. Each sync writes a canonical Hugging Face checkpoint directory under a version such as weight_v000003. The rollout engine pulls the directory, optionally into a host-local checkpoint, and reloads through its ordinary update_weights_from_disk endpoint. A post-write hook can publish files to an object-store-backed mount before hosts read them.
Disk makes the version a durable artifact. It supports external rollout engines and release-train flows, but it adds filesystem visibility, storage cleanup, and checkpoint write time. A successful write on one host isn't proof that every engine can read the same bytes.
Delta mode is disk-only and non-colocated. The trainer first captures a CPU baseline seeded from --hf-checkpoint, then diffs each gathered HF tensor on later syncs. Changed bytes are compressed with zstd and written as a self-describing version. Each rollout host applies the delta into its local full checkpoint, verifies per-tensor checksums, and reloads through the same disk endpoint used by full sync.
The exclusive-or (XOR) encoding is small and fast, but it must be applied exactly once to the declared base. overwrite stores changed positions and new values, so re-applying a version converges instead of toggling back. The index records base version, encoding, compression, and checksum algorithm. A wrong base or out-of-order version fails loudly instead of serving a plausible but corrupt model.[3]
1--update-weight-mode delta \
2--update-weight-transport disk \
3--update-weight-disk-dir /shared/fs/delta-updates \
4--update-weight-local-checkpoint-dir /local/nvme/rollout-ckpt \
5--update-weight-delta-encoding xor \
6--update-weight-delta-checksum xxh3-128
| Path | Carrier | Engine-side state | Strong guard | What it can't hide |
|---|---|---|---|---|
| Full NCCL | NCCL broadcasts | Live SGLang weights | Pause and flush around chunks | A lost engine needs another transfer |
| Full disk | Shared filesystem | Complete HF checkpoint | Versioned directory and reload | Cross-host visibility can lag |
| Delta disk | Shared filesystem plus local checkpoint | Patched full checkpoint | Base version and per-tensor checksum | A bad baseline poisons every later diff |
Start agentic work with --custom-generate-function-path when one prompt should run a custom loop. The function can call tools, retrieval, a browser, a sandbox, or another service, then return one Sample or a list of sibling Samples. Use --custom-rm-path for verifier or environment reward. Replace the whole rollout function only when scheduling or buffering can't fit the default per-sample loop.[4][5]
Calling a tool is straightforward; preserving token provenance around that call takes care. Model-generated output tokens should have loss_mask=1; prompt templates, tool observations, and environment text should normally have loss_mask=0. The adapter records sampled token IDs and log probabilities directly from SGLang instead of decoding text and tokenizing it again.
One agent execution can fan out. A subagent branch, context compaction boundary, or main-agent continuation may become several trainable segments. Return them with the same rollout_id. If one trajectory has one total reward, custom code or a reward postprocessor must assign reward / K across its K segments so branch count doesn't amplify the trajectory. The manager validates IDs, but it doesn't divide reward automatically.
| Workflow | Starting hook | Evidence to preserve | Useful artifact |
|---|---|---|---|
| Search or retrieval-augmented generation (RAG) | custom_generate | Query, retrieved context, sampled tokens | Search trace plus reward report |
| Tool agent | custom_generate + custom_rm | Tool calls, observations, verifier result | Session trajectory and test log |
| Coding agent | Adapter or custom generate | Model tokens, sandbox diff, clean tests | Patch, rollout dump, grader output |
| Multi-agent | rollout_function or fan-out generate | Branch IDs and shared rollout ID | Per-branch loss masks and reward split |
| Long-tail agent | Fully-async rollout function | Queue age, abort status, weight version | Replayable debug dump |
The coding-agent example makes this concrete: a harness edits a fresh sandbox, captures a diff, and grades that diff in a second clean sandbox. The training target is still the model's token stream, not the final text copied from a log. This split lets teams change the harness without changing Megatron's loss code.
1async def custom_generate(args, sample, sampling_params):
2 trajectory = await run_agent(sample.prompt, tools=args.tools)
3 sample.tokens = trajectory.prompt_ids + trajectory.model_tokens
4 sample.loss_mask = trajectory.model_token_mask
5 sample.response_length = len(trajectory.model_tokens)
6 sample.rollout_log_probs = trajectory.model_log_probs
7 sample.reward = await verify(trajectory)
8 sample.rollout_id = sample.rollout_id or sample.index
9 sample.status = "COMPLETED"
10 return sampleThis sketch omits adapter setup and status enums, so it isn't a drop-in script. It does show the contract: tokens contains prompt plus generated IDs, response-side masks and log probabilities follow sampled token provenance, reward comes from an explicit verifier, and the rollout ID remains stable.
The repository lists slime behind the GLM-4.5 and GLM-5 model lines, along with support for Qwen, DeepSeek, and Llama families. Those references establish where the framework is used, not a universal performance ranking. Read model-specific launch scripts and reports before comparing throughput or quality.[6][7]
Applications span verifiable math, search, tool use, coding agents, multi-agent systems, on-policy distillation, and multimodal environments. Community projects extend the same substrate in different directions: vime swaps in a vLLM rollout backend, Relax separates actor and rollout services, and APRIL studies active partial rollouts for long-tail generation. The common point is the data and weight contract, not a shared application API.[1][8]
| Application pressure | slime surface | Question to measure |
|---|---|---|
| Verifiable answers | Reward model and group filter | Are reward groups informative? |
| Long context or tools | SGLang router and session key | Are requests pinned without hot spots? |
| Slow sandboxes | Fully-async worker or partial rollout | Is queue age bounded? |
| Separate serving cluster | Disk or delta weight sync | Can every host prove its base version? |
| New model family | Native Megatron and SGLang pass-through | Which conversion and parser contracts changed? |
Treat each application as an experiment with a receipt. Save the launch arguments, model checkpoint, data revision, reward code, sync mode, rollout dumps, and metrics. Without that receipt, a green reward curve can't tell you whether the policy improved or the verifier changed.
slime's strengths come from its narrow ownership boundaries. It doesn't hide Megatron parallelism behind a new trainer abstraction, and it doesn't flatten SGLang's serving flags to a lowest common denominator. Users get a framework that can follow upstream engine work while keeping one place for RL-specific sample and synchronization rules.[2]
| Strength | Why it helps | Cost or limit |
|---|---|---|
| Native Megatron path | Mature distributed training and checkpoint tools remain available | Megatron version changes can break bridges |
| SGLang-native rollout | Server, router, caching, and parser features stay visible | SGLang is the chosen rollout backend |
| Ray placement and actors | One resource vocabulary for train and rollout | Ray scheduling and object-store state need operations |
| Explicit Sample contract | Token provenance and group identity are inspectable | Custom hooks must honor many fields |
| Multiple sync modes | Topology can choose NCCL, full disk, or delta disk | Each mode has different recovery and storage risks |
| Lightweight core | Teams can add environments without a framework fork | Application policy, auth, and governance stay outside |
Most production failures cross a boundary. Rollout servers can stay alive while serving old weights. Reward functions can return a number while masking every response token. Fully-async queues may stay busy while repeatedly requeueing aborted groups. Debugging starts by naming the boundary, then checking the receipt that crosses it.
| Symptom | Likely boundary | Check first | Guardrail |
|---|---|---|---|
| Reward changes with no code change | Data or verifier | Dataset revision and reward config | Persist input and reward metadata |
| KL spikes after sync | Weight transport | Engine version, pause/flush logs, checksum | Compare weights before serving |
| Agent learns tool observations | Token trajectory | loss_mask around tool messages | Assert mask length and source |
| Fully-async throughput falls | Queue or abort path | Queue age, aborted count, worker logs | Requeue intentionally and cap concurrency |
| Disk sync succeeds on trainer only | Filesystem visibility | Host-local checkpoint and hook output | Publish then pull on every host |
| Job hangs after rollout crash | Fault handling | Health monitor and restart logs | Enable health checks and save replay dumps |
--use-fault-tolerance starts heartbeat checks against SGLang servers. A timed-out engine is stopped, and after the current rollout round finishes, slime restarts it and applies the correct parameters before future requests. This is rollout-engine recovery, not a promise that a failed trainer rank or a preempted cluster job can resume from memory.[9]
Debug replay narrows the search. Save a rollout with --save-debug-rollout-data, load it with --load-debug-rollout-data, and use --debug-train-only to replay conversion and training without starting SGLang. Pair replay dumps with checkpoints, trace spans, and a pinned launch command. A reproducible failure is more useful than a dashboard screenshot.
Long-running jobs should also watch backpressure. Health checks can mistake first-run kernel compilation for a dead server, so the docs expose a first-wait setting. Fully-async workers can hide slow samples in a warm queue, so log queue length and completion age. Disk sync can hide stale mounts, so verify every host's local checkpoint and weight version.
The repository's continuous integration (CI) mirrors this split. CPU tests cover Sample behavior, rollout validation, argument contracts, and customization hooks. GPU end-to-end tests cover Megatron, SGLang deployment, async rollout, checkpointing, precision, and replay. A passing unit test doesn't prove a multi-node sync is visible, so keep a small environment-specific smoke run in the release receipt.
slime is published through the THUDM organization, whose official profile identifies its THUKEG and Z.ai lineage.[10] The repository's citation names Zilin Zhu, Chengxing Xie, Xin Lv, and slime contributors. The introductory blog frames the project around an SGLang-native rollout path, Megatron training, Ray resource management, and custom data generation.[1][2]
| Field | Current project fact |
|---|---|
| Origin | THUDM and Z.ai built slime for post-training workflows that connect Megatron, SGLang, and Ray.[1][2] |
| Founding contributors | The repository citation names Zilin Zhu, Chengxing Xie, Xin Lv, and slime contributors.[1] |
| Stewardship | Z.ai leads the roadmap. Public contribution scope emphasizes bug fixes and general RL optimizations that its CI can verify.[11] |
| Source license | slime source is Apache-2.0, with Zhipu AI copyright notices.[12] |
| Commercial boundary | The framework is open source, but project policy prioritizes Z.ai's internal development roadmap. This is vendor-led governance, not a neutral foundation model.[11] |
| Asset boundary | GLM checkpoints, other model weights, datasets, environments, and reward services retain separate licenses and terms. |
The first release notes describe v0.1.0 as focusing on MoE inference, memory offload, faster parameter updates, Megatron parallel strategies, and strict correctness checks. Treat those statements as release context, not as a promise that every current branch has the same performance or feature set.[1]
The source snapshot has no dedicated peer-reviewed slime system paper. Cite the repository and LMSYS design post for its architecture, then use model and systems papers such as GLM-4.5, GLM-5, and APRIL as evidence for applications and related mechanisms. Don't turn those papers into proof of every framework claim.
Contribution policy is intentionally focused. Bug fixes and general RL optimizations that can be verified through CI are welcome. Large refactors, universal agent abstractions, and changes that can't be tested against routine training stay outside the core scope. That governance keeps internal and open development aligned while leaving application-specific systems in their own repositories.[11]
This history explains the project's shape. slime is not trying to own every environment, reward model, or serving backend. It concentrates on the hard handoff between high-throughput training and high-throughput rollout, then lets teams compose the rest around stable contracts.
This walkthrough uses the official slime repository at commit aaf5c2092b01219fa0d5c2d323741d409086ca32.[1] Read one vertical path before opening every module. Start with the README architecture section and the introductory blog to learn why Ray, Megatron, SGLang, and the Data Buffer are separate. Then open train.py and train_async.py side by side. Mark each ray.get, each generate.remote, and each update_weights call; that is the timing model in executable form.
Next inspect slime/ray/placement_group.py and slime/ray/rollout.py. Follow how bundles become server groups, how routers are started, and how RolloutManager.generate() converts nested Samples into train data. Read slime/rollout/sglang_rollout.py for prompt IDs, session routing, aborts, and reward calls. Then compare slime/rollout/fully_async_rollout.py with the fully-async example to see queue lifetime and abort requeue.
For the weight boundary, read slime/ray/actor_group.py, update_weight_from_distributed.py, update_weight_from_disk.py, and update_weight_from_disk_delta.py in that order. The first shows the caller's lifecycle, the next two show transport, and the last shows baseline, delta, checksum, and apply ordering. Keep a paper notebook with version, base version, and engine state for one hypothetical sync.
For agents, follow docs/en/get_started/customization.md, docs/en/get_started/agent.md, and examples/coding_agent_rl. For operations, read docs/en/advanced/fault-tolerance.md, the debug guide, and the CI guide. For research context, use the slime2025blog design post, slime2026docs architecture and sync pages, slime2026customization, slime2026agents, and slime2026faulttolerance; then read the primary GLM-4.5, GLM-5, and APRIL sources before repeating any benchmark or model claim.[3][4][5][9][6][7][8]
Carry one question into every repository: which state is authoritative at each step? In slime, authority sits in token IDs during rollout, grouped Samples in the buffer, Megatron parameters during training, and a versioned sync artifact before SGLang serves again.
Answer every question, then check your score. Score 75% or higher to mark this lesson complete.
8 questions remaining.
slime: An LLM Post-Training Framework for RL Scaling
Zhu, Z., Xie, C., Lv, X., and slime Contributors · 2025
slime: An SGLang-Native Post-Training Framework for RL Scaling
Zhu, Z., Xie, C., Lv, X., and Contributors · 2025
slime Documentation
slime Contributors · 2026
slime Customization Guide
slime Contributors · 2026
Agentic Reinforcement Learning with slime
slime Contributors · 2026
GLM-4.5: Agentic, Reasoning, and Coding Foundation Models
GLM-4.5 Team · 2025
GLM-5: From Vibe Coding to Agentic Engineering
GLM-5 Team · 2026
APRIL: Active Partial Rollouts in Reinforcement Learning to Tame Long-Tail Generation
Zhou, Y., Li, J., Su, Y., et al. · 2025
slime Rollout Fault Tolerance
slime Contributors · 2026
THUDM
THUDM · 2026
Contributing to slime
slime Contributors · 2026
slime Apache License 2.0
THUDM and Zhipu AI · 2026
Questions and insights from fellow learners.