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
@@ -39,16 +39,18 @@ AgentFly is an extensible framework for building LLM agents with reinforcement l
39
39
40
40
## News
41
41
42
-
**08/2025 Multi-Modal (Vision) Agent Training Support** - Thanks to the powerful template system, AgentFly now supports training vision-language agents! 🎉 Train agents that can see and understand visual content, including GUI automation and image-based QA. See our [predefined training examples](docs/examples/predefined_training_examples.md) for ready-to-use scripts.
42
+
**12/2025 verl update**: Updated verl to 0.6.x version.
43
+
44
+
**08/2025 Multi-Modal (Vision) Agent Training Support**: Thanks to the powerful template system, AgentFly now supports training vision-language agents! 🎉 Train agents that can see and understand visual content, including GUI automation and image-based QA. See our [predefined training examples](docs/examples/predefined_training_examples.md) for ready-to-use scripts.
43
45
44
46
---
45
47
46
-
**08/2025 Chat Template System** - A flexible framework for creating conversation templates with multi-model support, vision capabilities, and tool integration. [Learn more →](docs/chat_template/)
48
+
**08/2025 Chat Template System**: A flexible framework for creating conversation templates with multi-model support, vision capabilities, and tool integration. [Learn more →](docs/chat_template/)
47
49
48
50
## Installation
49
51
**Option 1**: One-line Installation:
50
52
```
51
-
bash install.sh # Assume conda with python3.10.x
53
+
bash install.sh # Assume conda with python3.12.x
52
54
```
53
55
**Option 2**: Customized Installation
54
56
@@ -144,7 +146,7 @@ During training, `question` will be used to format the input messages, while oth
144
146
#### 2. Tools & Rewards
145
147
You can use any existing tool, which is in [documentation](https://agentfly.readthedocs.io/), or define a tool by decorating it with `@tool`. The output should eighther be a string, or a dictionary containing `observation` as a key.
0 commit comments