What problem does it solve?
It helps you build and train reinforcement learning (RL) plugins that improve an autonomous agent’s behavior over time without manually wiring every algorithm end-to-end.
Core Features & Use Cases
- Plugin-based RL algorithms: Create learning plugins using AgentDB’s plugin system across nine RL approaches, including Decision Transformer, Q-Learning, SARSA, and Actor-Critic.
- Experience-to-training workflow: Insert interaction data (state, action, reward, next_state, done) into the learning database and train models from that experience.
- Offline and policy learning support: Use offline RL (e.g., Decision Transformer) and value/policy learning methods (e.g., Q-Learning, Actor-Critic) for different task constraints such as logged data vs. online exploration.
Use case: you have game or simulation episodes where you logged state-action-reward transitions, and you want to train an agent that can suggest strong next actions based on that history.
Quick Start
Train an RL plugin by running the interactive command to create a Decision Transformer plugin for your agent, then insert experience and run training to obtain model metrics.