File size: 1,227 Bytes
fcc38f9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | site_name: VAGEN
site_description: VAGEN is a multi-turn reinforcement learning framework designed specifically for training VLM Agents. VAGEN leverages the TRICO algorithm to efficiently train VLMs for visual agentic tasks.
site_author: Kangrui Wang, Yaning Gao
# Material theme settings
theme:
name: material
palette:
primary: indigo
accent: indigo
features:
- header.autohide
- navigation.instant
icon:
repo: fontawesome/brands/github
repo_url: https://github.com/RAGEN-AI/VAGEN/tree/main
repo_name: RAGEN-AI/VAGEN
plugins:
- search
# Left Navigation bar
nav:
- Home: index.md
- Quick Start:
- Installation and Run Experiment: run-exp.md
- Configurations:
- General Configuration: configs/general-config.md
- Algorithm Configuration: configs/algo-config.md
- Environments:
- Create Environment: envs/create-env.md
- Create Service: envs/create-service.md
- Experiments:
- Reproduce Experiments: reproduce-exp.md
# Copyright footer
copyright: Copyright © 2025, VAGEN Team
# Additional settings
markdown_extensions:
- admonition
- codehilite
- footnotes
- toc:
permalink: true
- pymdownx.highlight
- pymdownx.superfences |