You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -32,14 +32,14 @@ Let's begin with the simplest example: a math agent with a tool call.
32
32
```
33
33
34
34
35
-
## 🛩️ Features
35
+
## ✈️ Features
36
36
37
37
We aim to build a easy-to-learn Agent tuner that unlock more possibilities for agent developers:
38
38
39
39
-**Easy and Friendly**. AgentJet helps you tune models behind your agent workflows easily, optimizing your agents for top performance with minimal effort.
40
40
-**Rich Tutorial Library**. AgentJet provides a rich library of [examples](https://github.com/modelscope/AgentJet/tree/main/tutorial) as tutorials.
41
41
-**Efficient and Scalable**. AgentJet uses [verl] as the default backbone (`--backbone=verl`). However, we also support [trinity](https://github.com/modelscope/Trinity-RFT/) as alternative backbone, accelerating your tuning process via fully asynchronous RFT.
42
-
-**Flexible and Fast**. AgentJet supports [multi-agent workflows](https://doc.agentjet.top/AgentJet/en/workflow.md) and adopts a context merging technique, accelerating training by 1.5x to 10x when the workflow involves multi-turn (or multi-agent) conversations.
42
+
-**Flexible and Fast**. AgentJet supports [multi-agent workflows](https://modelscope.github.io/AgentJet/en/workflow.md) and adopts a context merging technique, accelerating training by 1.5x to 10x when the workflow involves multi-turn (or multi-agent) conversations.
43
43
-**Reliability and Reproducibility**. Our team keeps track of framework performance across multiple [tasks + major-git-version + training-backbones](https://benchmark.agent-matrix.com/) (under construction, still gathering data, coming soon).
44
44
45
45
For advanced researchers, AgentJet also provides high-resolution logging and debugging solutions:
@@ -50,15 +50,15 @@ For advanced researchers, AgentJet also provides high-resolution logging and deb
50
50
51
51
---
52
52
53
-
### 🛩️ Quick Start
53
+
### ✈️ Quick Start
54
54
55
55
#### Installation
56
56
57
-
-**Click here to read the**[**installation guide**](https://doc.agentjet.top/AgentJet/en/installation/).
57
+
-**Click here to read the**[**installation guide**](https://modelscope.github.io/AgentJet/en/installation/).
58
58
59
59
#### Run Training
60
60
61
-
- You can start training your first agent with a single command using a pre-configured YAML file. Take the [Math agent](https://doc.agentjet.top/AgentJet/en/example_math_agent/) as an example:
61
+
- You can start training your first agent with a single command using a pre-configured YAML file. Take the [Math agent](https://modelscope.github.io/AgentJet/en/example_math_agent/) as an example:
@@ -68,17 +68,17 @@ For advanced researchers, AgentJet also provides high-resolution logging and deb
68
68
69
69
Explore our rich library of examples to kickstart your journey:
70
70
71
-
- 🔢 [**Training a math agent that can write python code**](https://doc.agentjet.top/AgentJet/en/example_math_agent).
72
-
- 📱 [**Creating an AppWorld agent using AgentScope and training it**](https://doc.agentjet.top/AgentJet/en/example_app_world).
73
-
- 🐺 [**Developing Werewolves RPG agents and training them**](https://doc.agentjet.top/AgentJet/en/example_werewolves).
74
-
- 👩🏻⚕️ [**Learning to ask questions like a doctor**](https://doc.agentjet.top/AgentJet/en/example_learning_to_ask).
75
-
- 🎴 [**Writing a countdown game using AgentScope and solving it**](https://doc.agentjet.top/AgentJet/en/example_countdown).
76
-
- 🚶 [**Solving a frozen lake walking puzzle using AgentJet**](https://doc.agentjet.top/AgentJet/en/example_frozenlake).
71
+
- 🔢 [**Training a math agent that can write python code**](https://modelscope.github.io/AgentJet/en/example_math_agent).
72
+
- 📱 [**Creating an AppWorld agent using AgentScope and training it**](https://modelscope.github.io/AgentJet/en/example_app_world).
73
+
- 🐺 [**Developing Werewolves RPG agents and training them**](https://modelscope.github.io/AgentJet/en/example_werewolves).
74
+
- 👩🏻⚕️ [**Learning to ask questions like a doctor**](https://modelscope.github.io/AgentJet/en/example_learning_to_ask).
75
+
- 🎴 [**Writing a countdown game using AgentScope and solving it**](https://modelscope.github.io/AgentJet/en/example_countdown).
76
+
- 🚶 [**Solving a frozen lake walking puzzle using AgentJet**](https://modelscope.github.io/AgentJet/en/example_frozenlake).
77
77
78
78
79
79
---
80
80
81
-
### 🛩️ Core Concepts
81
+
### ✈️ Core Concepts
82
82
83
83
AgentJet makes agent fine-tuning straightforward by separating the developer interface from the internal execution logic.
84
84
@@ -91,9 +91,9 @@ AgentJet makes agent fine-tuning straightforward by separating the developer int
91
91
92
92
To optimize an agent, you provide three core inputs:
93
93
94
-
*[**Trainable Workflow**](https://doc.agentjet.top/AgentJet/en/workflow): Define your agent logic by inheriting the Workflow class, supporting both simple agent setups and advanced multi-agent collaborations.
95
-
*[**Task Reader**](https://doc.agentjet.top/AgentJet/en/data_pipeline): Load training tasks from JSONL files, HuggingFace datasets, interactive environments, or auto-generate them from documents.
96
-
*[**Task Judger**](https://doc.agentjet.top/AgentJet/en/task_judger): Evaluates agent outputs and assigns rewards to guide training.
94
+
*[**Trainable Workflow**](https://modelscope.github.io/AgentJet/en/workflow): Define your agent logic by inheriting the Workflow class, supporting both simple agent setups and advanced multi-agent collaborations.
95
+
*[**Task Reader**](https://modelscope.github.io/AgentJet/en/data_pipeline): Load training tasks from JSONL files, HuggingFace datasets, interactive environments, or auto-generate them from documents.
96
+
*[**Task Judger**](https://modelscope.github.io/AgentJet/en/task_judger): Evaluates agent outputs and assigns rewards to guide training.
97
97
98
98
#### 2. Internal System Architecture
99
99
@@ -109,14 +109,14 @@ The internal system orchestrates several specialized modules to handle the compl
109
109
110
110
111
111
112
-
### 🛩️ Navigation
112
+
### ✈️ Navigation
113
113
114
-
***Tutorials**: From [Installation](https://doc.agentjet.top/AgentJet/en/installation) to [Tuning your first agent](https://doc.agentjet.top/AgentJet/en/tune_your_first_agent) — the essential path for beginners.
115
-
***Core Components**: Define your [Trainable Workflow](https://doc.agentjet.top/AgentJet/en/workflow) and manage [Data](https://doc.agentjet.top/AgentJet/en/data_pipeline) and [Reward](https://doc.agentjet.top/AgentJet/en/task_judger).
116
-
***Example**: Check the [Example Library](#example-library) above for real-world cases like [Math](https://doc.agentjet.top/AgentJet/en/example_math_agent), [Werewolves game](https://doc.agentjet.top/AgentJet/en/example_werewolves) and [Learning to ask task](https://doc.agentjet.top/AgentJet/en/example_learning_to_ask).
***Tutorials**: From [Installation](https://modelscope.github.io/AgentJet/en/installation) to [Tuning your first agent](https://modelscope.github.io/AgentJet/en/tune_your_first_agent) — the essential path for beginners.
115
+
***Core Components**: Define your [Trainable Workflow](https://modelscope.github.io/AgentJet/en/workflow) and manage [Data](https://modelscope.github.io/AgentJet/en/data_pipeline) and [Reward](https://modelscope.github.io/AgentJet/en/task_judger).
116
+
***Example**: Check the [Example Library](#example-library) above for real-world cases like [Math](https://modelscope.github.io/AgentJet/en/example_math_agent), [Werewolves game](https://modelscope.github.io/AgentJet/en/example_werewolves) and [Learning to ask task](https://modelscope.github.io/AgentJet/en/example_learning_to_ask).
<ahref="en/installation/"class="feature-card"><divclass="card-header"><imgsrc="https://api.iconify.design/mdi:download.svg"class="card-icon card-icon-tool"alt=""><h3>Click Here for the Full Installation Document</h3></div></a>
@@ -109,7 +109,7 @@ We recommend using `uv` for dependency management. [Click here](en/installation.
109
109
110
110
111
111
112
-
## 🛩️ Example Library {#example-library}
112
+
## ✈️ Example Library {#example-library}
113
113
114
114
Explore our rich library of examples to kickstart your journey:
115
115
@@ -123,11 +123,11 @@ Explore our rich library of examples to kickstart your journey:
123
123
</div>
124
124
125
125
126
-
## 🛩️ Core Concepts
126
+
## ✈️ Core Concepts
127
127
128
128
AgentJet makes agent fine-tuning straightforward by separating the developer interface from the internal execution logic.
129
129
130
-
**🛩️ The User-Centric Interface**
130
+
**✈️ The User-Centric Interface**
131
131
132
132
To optimize an agent, you provide three core inputs:
133
133
@@ -141,7 +141,7 @@ To optimize an agent, you provide three core inputs:
Copy file name to clipboardExpand all lines: mkdocs.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
site_name: AgentJet
2
-
site_url: https://doc.agentjet.top/AgentJet/
2
+
site_url: https://modelscope.github.io/AgentJet/
3
3
site_description: "A cutting-edge, user-friendly training framework designed to optimize AgentScope agents and workflows, fine-tuning language model weights behind the scenes."
0 commit comments