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
This directory contains several examples of how to use the AgentScope Tuner for tuning AgentScope applications. The table below summarizes the available examples:
4
+
5
+
| Example Name | Description | Example Path | Multi-step Interaction | LLM-as-a-Judge | Tool-use | Multi-Agent | Data Augmentation |
| Math Agent | A quick start example for tuning a math-solving agent to enhance its capabilities. |[math_agent](./math_agent)| ✅ | ❌ | ❌ | ❌ | ❌ |
8
+
| Frozen Lake | Make an agent to navigate the Frozen Lake environment in multi-step interactions. |[frozen_lake](./frozen_lake)| ✅ | ❌ | ❌ | ❌ | ❌ |
9
+
| Learn to Ask | Using LLM as a judge to provide feedback to facilitate agent tuning. |[learn_to_ask](./learn_to_ask)| ✅ | ✅ | ❌ | ❌ | ❌ |
10
+
| Email Search | Enhance the tool use ability of your agent on tasks without ground truth. |[email_search](./email_search)| ✅ | ✅ | ✅ | ❌ | ❌ |
11
+
| Werewolf Game | Enhance the agent's performance in a multi-agent game setting. |[werewolf_game](./werewolf_game)| ✅ | ✅ | ✅ | ✅ | ❌ |
12
+
| Data Augment | Data augmentation for better tuning results. |[data_augment](./data_augment)| ❌ | ❌ | ❌ | ❌ | ✅ |
13
+
14
+
Each example contains a README file with detailed instructions on how to set up and run the tuning process for that specific scenario. Feel free to explore and modify the examples to suit your needs!
15
+
16
+
17
+
## Prerequisites
18
+
19
+
AgentScope Tuner requires:
20
+
21
+
- Python 3.10 or higher
22
+
-`agentscope>=1.0.12`
23
+
-`trinity-rft>=0.4.1`
24
+
25
+
AgentScope Tuner is built on top of [Trinity-RFT](https://github.com/modelscope/Trinity-RFT).
26
+
Please refer to the [Trinity-RFT installation guide](https://modelscope.github.io/Trinity-RFT/en/main/tutorial/trinity_installation.html)
27
+
for detailed instructions on how to set up the environment.
0 commit comments