Skip to content

Commit c7f15db

Browse files
committed
fix: update documentation links to point to the new modelscope URLs
1 parent 6906d3a commit c7f15db

File tree

7 files changed

+41
-41
lines changed

7 files changed

+41
-41
lines changed

README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# AgentJet (Beta)
22

33
[![Benchmarking](https://img.shields.io/badge/Benchmarking-0078D4?style=for-the-badge&logo=github)](https://benchmark.agent-matrix.com/)
4-
[![Docs](https://img.shields.io/badge/Docs-Read%20the%20Documents-0A7ECC?style=for-the-badge&logo=readthedocs&logoColor=white)](https://doc.agentjet.top/AgentJet)
4+
[![Docs](https://img.shields.io/badge/Docs-Read%20the%20Documents-0A7ECC?style=for-the-badge&logo=readthedocs&logoColor=white)](https://modelscope.github.io/AgentJet)
55
[![License](https://img.shields.io/badge/License-Apache--2.0-4c1?style=for-the-badge)](LICENSE)
6-
[![Python](https://img.shields.io/badge/Python-3.10+-3776AB?style=for-the-badge&logo=python&logoColor=white)](https://doc.agentjet.top/AgentJet/en/installation#requirements)
6+
[![Python](https://img.shields.io/badge/Python-3.10+-3776AB?style=for-the-badge&logo=python&logoColor=white)](https://modelscope.github.io/AgentJet/en/installation#requirements)
77

88
<div align="center">
9-
<a href="https://doc.agentjet.top/AgentJet" target="_blank">
9+
<a href="https://modelscope.github.io/AgentJet" target="_blank">
1010
<img width="500" alt="AgentJet" src="docs/agentjet.jpg"/>
1111
</a>
1212
</div>
@@ -18,11 +18,11 @@ Simply provide your agent **workflow**, training **dataset**, and **reward** fun
1818

1919

2020

21-
## 🛩️ Minimum Example
21+
## ️ Minimum Example
2222

2323
Let's begin with the simplest example: a math agent with a tool call.
2424

25-
- First, please check out the [installation guide](https://doc.agentjet.top/AgentJet/en/installation/) to set up the training environment.
25+
- First, please check out the [installation guide](https://modelscope.github.io/AgentJet/en/installation/) to set up the training environment.
2626
- Then, tune your first model using the minimum example.
2727
```python
2828
ajet --conf tutorial/example_math_agent/math_agent.yaml --backbone='verl'
@@ -32,14 +32,14 @@ Let's begin with the simplest example: a math agent with a tool call.
3232
```
3333

3434

35-
## 🛩️ Features
35+
## ️ Features
3636

3737
We aim to build a easy-to-learn Agent tuner that unlock more possibilities for agent developers:
3838

3939
- **Easy and Friendly**. AgentJet helps you tune models behind your agent workflows easily, optimizing your agents for top performance with minimal effort.
4040
- **Rich Tutorial Library**. AgentJet provides a rich library of [examples](https://github.com/modelscope/AgentJet/tree/main/tutorial) as tutorials.
4141
- **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.
4343
- **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).
4444

4545
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
5050

5151
---
5252

53-
### 🛩️ Quick Start
53+
### ️ Quick Start
5454

5555
#### Installation
5656

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/).
5858

5959
#### Run Training
6060

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:
6262

6363
```bash
6464
ajet --conf tutorial/example_math_agent/math_agent.yaml
@@ -68,17 +68,17 @@ For advanced researchers, AgentJet also provides high-resolution logging and deb
6868

6969
Explore our rich library of examples to kickstart your journey:
7070

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).
7777

7878

7979
---
8080

81-
### 🛩️ Core Concepts
81+
### ️ Core Concepts
8282

8383
AgentJet makes agent fine-tuning straightforward by separating the developer interface from the internal execution logic.
8484

@@ -91,9 +91,9 @@ AgentJet makes agent fine-tuning straightforward by separating the developer int
9191

9292
To optimize an agent, you provide three core inputs:
9393

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.
9797

9898
#### 2. Internal System Architecture
9999

@@ -109,14 +109,14 @@ The internal system orchestrates several specialized modules to handle the compl
109109

110110

111111

112-
### 🛩️ Navigation
112+
### ️ Navigation
113113

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).
117-
* **Deep Dive**: Master advanced [Configuration](https://doc.agentjet.top/AgentJet/en/configuration).
114+
* **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).
117+
* **Deep Dive**: Master advanced [Configuration](https://modelscope.github.io/AgentJet/en/configuration).
118118

119-
## 🛩️ Roadmap
119+
## ️ Roadmap
120120

121121
AgentJet is a constantly evolving project. We are planning to add the following features in the near future.
122122

docs/en/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Let's begin with the simplest example: a math agent with a tool call.
1717
```python title="train_math_agent.py"
1818
from ajet import AgentJetJob
1919

20-
# refer to `https://doc.agentjet.top/AgentJet/en/tune_your_first_agent/` on how to write your own workflow
20+
# refer to `https://modelscope.github.io/AgentJet/en/tune_your_first_agent/` on how to write your own workflow
2121
from tutorial.example_math_agent.math_agent_simplify import MathToolWorkflow
2222

2323
model_path = "YOUR_MODEL_PATH"

docs/en/support_agentscope.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This article introduce the way to convert different types of ways to convert you
1414
=== "Before Convertion"
1515

1616
```python
17-
model = DashScopeChatModel(model_name="qwen-max", stream=False) # 🛩️ change here
17+
model = DashScopeChatModel(model_name="qwen-max", stream=False) # ️ change here
1818
agent_instance = ReActAgent(
1919
name=f"Friday",
2020
sys_prompt="You are a helpful assistant",
@@ -26,7 +26,7 @@ This article introduce the way to convert different types of ways to convert you
2626
=== "After Convertion (`as_agentscope_model()`)"
2727

2828
```python
29-
model = tuner.as_agentscope_model() # 🛩️ change here
29+
model = tuner.as_agentscope_model() # ️ change here
3030
agent_instance = ReActAgent(
3131
name=f"Friday",
3232
sys_prompt="You are a helpful assistant",

docs/en/workflow.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The very first step is to create a class as a container to wrap your code:
4040
from ajet import AjetTuner, Workflow, WorkflowOutput, WorkflowTask
4141
class MyWorkflow(Workflow):
4242
async def execute(self, workflow_task: WorkflowTask, tuner: AjetTuner) -> WorkflowOutput:
43-
# ... your ReActAgent workflow here 🛩️ ...
43+
# ... your ReActAgent workflow here ️ ...
4444
return WorkflowOutput(reward=..., metadata={...})
4545

4646
```
@@ -51,7 +51,7 @@ Next, use the `tuner` argument, call its `tuner.as_agentscope_model()` method:
5151
=== "Before"
5252

5353
```python
54-
model = DashScopeChatModel(model_name="qwen-max", stream=False) # 🛩️ change here
54+
model = DashScopeChatModel(model_name="qwen-max", stream=False) # ️ change here
5555
agent_instance = ReActAgent(
5656
name=f"Friday",
5757
sys_prompt="You are a helpful assistant",
@@ -63,7 +63,7 @@ Next, use the `tuner` argument, call its `tuner.as_agentscope_model()` method:
6363
=== "After"
6464

6565
```python
66-
model = tuner.as_agentscope_model() # 🛩️ change here
66+
model = tuner.as_agentscope_model() # ️ change here
6767
agent_instance = ReActAgent(
6868
name=f"Friday",
6969
sys_prompt="You are a helpful assistant",

docs/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
**AgentJet (AJet)** is a cutting-edge, user-friendly agent tuning framework designed to optimize LLM models and agent workflows.
99

1010

11-
## 🛩️ Key Features
11+
## ️ Key Features
1212

1313
<div class="card-grid">
1414
<a href="en/tune_your_first_agent/" class="feature-card">
@@ -75,7 +75,7 @@
7575

7676

7777

78-
## 🛩️ Quick Start
78+
## ️ Quick Start
7979

8080
<div class="card-grid">
8181
<a href="en/installation/" class="feature-card"><div class="card-header"><img src="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.
109109

110110

111111

112-
## 🛩️ Example Library {#example-library}
112+
## ️ Example Library {#example-library}
113113

114114
Explore our rich library of examples to kickstart your journey:
115115

@@ -123,11 +123,11 @@ Explore our rich library of examples to kickstart your journey:
123123
</div>
124124
125125
126-
## 🛩️ Core Concepts
126+
## ️ Core Concepts
127127
128128
AgentJet makes agent fine-tuning straightforward by separating the developer interface from the internal execution logic.
129129
130-
**🛩️ The User-Centric Interface**
130+
**️ The User-Centric Interface**
131131
132132
To optimize an agent, you provide three core inputs:
133133
@@ -141,7 +141,7 @@ To optimize an agent, you provide three core inputs:
141141
<img width="840" alt="AgentJet Architecture" src="https://img.alicdn.com/imgextra/i1/O1CN01xnkGyf1j8szYYxt5U_!!6000000004504-0-tps-2261-1471.jpg"/>
142142
</div>
143143
144-
**🛩️ Internal System Architecture**
144+
**️ Internal System Architecture**
145145
146146
The internal system orchestrates several specialized modules to handle the complexities of RL training and agent interactions.
147147
@@ -156,7 +156,7 @@ The internal system orchestrates several specialized modules to handle the compl
156156
157157
158158
159-
## 🛩️ Next Steps
159+
## ️ Next Steps
160160
161161
<div class="card-grid">
162162
<a href="en/installation/" class="feature-card"><div class="card-header"><img src="https://api.iconify.design/mdi:download.svg" class="card-icon card-icon-tool" alt=""><h3>Installation</h3></div><p class="card-desc">Set up AgentJet environment and dependencies.</p></a>

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
site_name: AgentJet
2-
site_url: https://doc.agentjet.top/AgentJet/
2+
site_url: https://modelscope.github.io/AgentJet/
33
site_description: "A cutting-edge, user-friendly training framework designed to optimize AgentScope agents and workflows, fine-tuning language model weights behind the scenes."
44
site_author: "Alibaba Tongyi Lab"
55
repo_url: https://github.com/modelscope/AgentJet

tutorial/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Explore our rich library of examples to kickstart your journey.
44

55
- Example Documentation:
66

7-
https://doc.agentjet.top/AgentJet/#example-library
7+
https://modelscope.github.io/AgentJet/#example-library
88

99
- Example Benchmark Tracking System:
1010

0 commit comments

Comments
 (0)