-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmkdocs.yml
More file actions
138 lines (129 loc) · 3.58 KB
/
mkdocs.yml
File metadata and controls
138 lines (129 loc) · 3.58 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
site_name: Claw-R1
site_url: https://AgentR1.github.io/Claw-R1/
site_description: "Empowering OpenClaw with Advanced Agentic RL — A Middleware-based Training Framework"
site_author: "Claw-R1 Team, USTC"
copyright: "Copyright © 2025 Claw-R1 Team · State Key Laboratory of Cognitive Intelligence, USTC"
repo_name: AgentR1/Claw-R1
repo_url: https://github.com/AgentR1/Claw-R1
edit_uri: edit/main/docs/
theme:
name: material
logo: assets/logo.jpeg
favicon: assets/logo.jpeg
palette:
- scheme: default
primary: custom
accent: deep-orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: custom
accent: deep-orange
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- navigation.footer
- search.highlight
- search.suggest
- search.share
- content.code.copy
- content.code.annotate
- content.tabs.link
- content.tooltips
- announce.dismiss
plugins:
- search:
lang: en
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
title: On this page
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.arithmatex:
generic: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.snippets
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/AgentR1/Claw-R1
name: Claw-R1 on GitHub
analytics:
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback!
nav:
- Home: index.md
- Getting Started:
- getting-started/index.md
- Installation: getting-started/installation.md
- Quick Start: getting-started/quickstart.md
- Concepts:
- concepts/index.md
- Base URL Integration: concepts/base-url-integration.md
- Middleware Layer: concepts/middleware-layer.md
- Production Scenario: concepts/production-scenario.md
- Components:
- components/index.md
- Gateway Server: components/gateway.md
- DataPool: components/datapool.md
- Agent Flow: components/agent-flow.md
- Async Training: components/async-training.md
- Reward System: components/reward-system.md
- Prefix Tree Merge: components/prefix-tree-merge.md
- RL Training Internals:
- rl-training-internals/index.md
- Configuration:
- configuration/index.md
- API Reference:
- api/index.md
- Gateway API: api/gateway.md
- Contributing: contributing.md