Multi-turn rollout trajectories from the SlideRL environment across 6 different models. Each trajectory captures an agent interacting with the SlideRL slide-generation environment over multiple tool-use turns.
| File | Model | Episodes | Description |
|---|---|---|---|
claude_opus_4_6_trajectories.json | Claude Opus 4.6 | 48 | Anthropic Claude Opus 4.6 |
claude_sonnet_4_6_trajectories.json | Claude Sonnet 4.6 | 48 | Anthropic Claude Sonnet 4.6 |
llama_4_scout_trajectories.json | Llama 4 Scout | 48 | Meta Llama 4 Scout |
gpt_oss_120b_trajectories.json | GPT-OSS-120B | 48 | OpenAI GPT-OSS-120B |
finetuned_model_trajectories.json | SlideRL Finetuned | 48 | GRPO-finetuned model |
base_model_trajectories.json | SlideRL Base | 48 | Base model before finetuning |
Each JSON file contains a list of episodes. Each episode has:
{
"episode_id": "uuid",
"model": "model-name",
"brief": { "topic": "...", "audience": "...", "num_slides": N, ... },
"brief_topic": "Topic Name",
"turns": [
{
"turn": 0,
"assistant": "model's response text",
"tool_call": { "tool": "tool_name", ... },
"observation": "environment feedback",
"success": true,
"phase": "RESEARCH|PLAN|BUILD|REFINE",
"slide_count": 0,
"done": false,
"step_reward": 0.01,
"cumulative_reward": 0.01
}
],
"total_steps": 25,
"final_phase": "REFINE",
"completed": true,
"slides_created": 6,
"cumulative_reward": 1.15,
"final_quality": { "aggregate": 0.80, ... },
"slides_html": ["<slide html>..."],
"elapsed_seconds": 120.5
}
The SlideRL environment is a multi-turn tool-use environment where agents create presentation slide decks by:
Agents interact through structured tool calls (web_search, create_outline, set_theme, add_slide, replace_slide, delete_slide, etc.) and receive environment observations with quality feedback.
All models are evaluated on the same 48 business presentation briefs spanning finance, technology, marketing, cybersecurity, healthcare, and more.
Part of the SlideRL project — an open-ended RL environment for training LLM agents on multi-turn tool-use tasks.
8 commits
Multi-turn rollout trajectories from the SlideRL environment across 6 different models. Each trajectory captures an agent interacting with the SlideRL slide-generation environment over multiple tool-use turns.
| File | Model | Episodes | Description |
|---|---|---|---|
claude_opus_4_6_trajectories.json | Claude Opus 4.6 | 48 | Anthropic Claude Opus 4.6 |
claude_sonnet_4_6_trajectories.json | Claude Sonnet 4.6 | 48 | Anthropic Claude Sonnet 4.6 |
llama_4_scout_trajectories.json | Llama 4 Scout | 48 | Meta Llama 4 Scout |
gpt_oss_120b_trajectories.json | GPT-OSS-120B | 48 | OpenAI GPT-OSS-120B |
finetuned_model_trajectories.json | SlideRL Finetuned | 48 | GRPO-finetuned model |
base_model_trajectories.json | SlideRL Base | 48 | Base model before finetuning |
Each JSON file contains a list of episodes. Each episode has:
{
"episode_id": "uuid",
"model": "model-name",
"brief": { "topic": "...", "audience": "...", "num_slides": N, ... },
"brief_topic": "Topic Name",
"turns": [
{
"turn": 0,
"assistant": "model's response text",
"tool_call": { "tool": "tool_name", ... },
"observation": "environment feedback",
"success": true,
"phase": "RESEARCH|PLAN|BUILD|REFINE",
"slide_count": 0,
"done": false,
"step_reward": 0.01,
"cumulative_reward": 0.01
}
],
"total_steps": 25,
"final_phase": "REFINE",
"completed": true,
"slides_created": 6,
"cumulative_reward": 1.15,
"final_quality": { "aggregate": 0.80, ... },
"slides_html": ["<slide html>..."],
"elapsed_seconds": 120.5
}
The SlideRL environment is a multi-turn tool-use environment where agents create presentation slide decks by:
Agents interact through structured tool calls (web_search, create_outline, set_theme, add_slide, replace_slide, delete_slide, etc.) and receive environment observations with quality feedback.
All models are evaluated on the same 48 business presentation briefs spanning finance, technology, marketing, cybersecurity, healthcare, and more.
Part of the SlideRL project — an open-ended RL environment for training LLM agents on multi-turn tool-use tasks.
8 commits