What problem does it solve? Setting up RL post-training pipelines for large language models requires coordinating distributed training, high-throughput inference, and data management across frameworks, which is complex and error-prone to build from scratch. ## Core Features & Use Cases - Megatron-LM + SGLang Integration: Combines Megatron-LM training parallelism (TP, PP, DP, SP) with SGLang-based high-throughput rollout generation and weight synchronization. - Multiple RL Workflows: Supports standard GRPO training, asynchronous training with buffered rollouts, and multi-turn agentic training with custom generate functions and tool calling. - Flexible Data Buffer: Provides prompt management, rollout sample storage, and off-policy buffered data sources with custom filtering logic. - Use Case: Train a Qwen3-4B reasoning model with GRPO by sourcing a pre-configured model script, preparing JSONL prompt-label data, and launching train.py with rollout and batch parameters. ## Quick Start Ask the agent to set up a GRPO training run for a Qwen3-4B model using slime with a JSONL prompt dataset and 8 GPUs split between training and rollout.