ART is an open-source reinforcement training library for improving LLM performance in agentic workflows. Unlike most RL libraries, ART allows you to execute agent runs in your existing codebase while offloading all the complexity of the RL training loop to the ART backend. Read about the training loop. Then try out one of the notebooks below!
Agent Task | Example Notebook | Description | Comparative Performance |
---|---|---|---|
2048 | 🏋️ Train your agent | Qwen 2.5 3B learns to play 2048 | [Link coming soon] |
ART's functionality is divided into a client and a server. The OpenAI-compatible client is responsible for interfacing between ART and your codebase. Using the client, you can pass messages and get completions from your LLM as it improves. The server runs independently on any machine with a GPU. It abstracts away the complexity of the inference and training portions of the RL loop while allowing for some custom configuration. An outline of the training loop is shown below:
-
Inference
- Your code uses the ART client to perform an agentic workflow (usually executing several rollouts in parallel to gather data faster).
- Completion requests are routed to the ART server, which runs the model's latest LoRA in vLLM.
- As the agent executes, each
system
,user
, andassistant
message is stored in a Trajectory. - When a rollout finishes, your code assigns a
reward
to its Trajectory, indicating the performance of the LLM.
-
Training
- When each rollout has finished, Trajectories are grouped and sent to the server. Inference is blocked while training executes.
- The server trains your model using GRPO, initializing from the latest checkpoint (or an empty LoRA on the first iteration).
- The server saves the newly trained LoRA to a local directory and loads it into vLLM.
- Inference is unblocked and the loop resumes at step 1.
This training loop runs until a specified number of inference and training iterations have completed.
ART should work with any vLLM/HuggingFace-transformers compatible causal language model, or at least the ones supported by Unsloth. If a model isn't working for you, please let us know on Discord or open an issue on GitHub!
ART is currently in alpha and has only been tested on a few projects in the wild! We're working hard to make it work for everyone, but if you run into any issues, please let us know on Discord or open an issue on GitHub!
ART is in very active development, and contributions are most welcome! Please see the CONTRIBUTING.md file for more information.
ART stands on the shoulders of giants. While we owe many of the ideas and early experiments that led to ART's development to the open source RL community at large, we're especially grateful to the authors of the following projects:
Finally, thank you to our partners who've helped us test ART in the wild! We're excited to see what you all build with it.