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
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,7 @@ Easy for beginners, powerful for experts.
58
58
-**Developer-friendly**: Low-code development, visual tracing & monitoring. From developing to deployment, all in one place.
59
59
60
60
## 📢 News
61
+
-**[2025-07-01]** A new version AgentScope is under development. In this new version, AgentScope will be more powerful and flexible, with a new architecture and more features. Refer to our [Roadmap](https://github.com/modelscope/agentscope/blob/main/docs/ROADMAP.md) for more details!
61
62
-**[2025-04-27]** A new 💻 AgentScope Studio is online now. Refer [here](https://doc.agentscope.io/build_tutorial/visual.html) for more details.
62
63
-**[2025-03-21]** AgentScope supports hooks functions now. Refer to our [tutorial](https://doc.agentscope.io/build_tutorial/hook.html) for more details.
63
64
-**[2025-03-19]** AgentScope supports 🔧 tools API now. Refer to our [tutorial](https://doc.agentscope.io/build_tutorial/tool.html).
Copy file name to clipboardExpand all lines: docs/news_en.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@
43
43
44
44
-**[2024-04-06]** We release **AgentScope** v0.0.3 now!
45
45
46
-
-**[2024-04-06]** New examples [Gomoku](https://github.com/modelscope/agentscope/blob/main/examples/game_gomoku), [Conversation with ReAct Agent](https://github.com/modelscope/agentscope/blob/main/examples/conversation_with_react_agent), [Conversation with RAG Agent](https://github.com/modelscope/agentscope/blob/main/examples/conversation_with_RAG_agents) and [Distributed Parallel Optimization](https://github.com/modelscope/agentscope/blob/main/examples/distributed_parallel_optimization) are available now!
46
+
-**[2024-04-06]** New examples [Gomoku](https://github.com/modelscope/agentscope/blob/main/examples/game_gomoku), [Conversation with ReAct Agent](https://github.com/modelscope/agentscope/blob/main/examples/agent_ReAct), [Conversation with RAG Agent](https://github.com/modelscope/agentscope/blob/main/examples/conversation_with_RAG_agents) and [Distributed Parallel Optimization](https://github.com/modelscope/agentscope/blob/main/examples/distributed_parallel_optimization) are available now!
47
47
48
48
-**[2024-03-19]** We release **AgentScope** v0.0.2 now! In this new version,
49
49
AgentScope supports ollama(A local CPU inference engine), DashScope and Google Gemini APIs.
This example demonstrates how to use the ReAct agent in AgentScope to build a
4
+
simple conversation.
5
+
6
+
**Tip:** AgentScope provides two implementations of ReAct agent:
7
+
-`agentscope.agents.ReActAgent`: Extract tool calls from the text response of LLMs locally.
8
+
-`agentscope.agents.ReActAgentV2`: Use the tools API, where the tool calls extraction is done by the LLM API provider, currently supports OpenAI, DashScope, Anthropic.
9
+
10
+
They share the same interface, so you can easily switch between them. The
11
+
example in `main.py` use `ReActAgent` by default, you can change it to
12
+
`ReActAgentV2` by modifying the import statement.
13
+
14
+
15
+
To run this example, install agentscope and then execute the following command:
Copy file name to clipboardExpand all lines: examples/conversation_nl2sql/react_nl2sql.ipynb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@
21
21
"- Follow [READMD.md](https://github.com/modelscope/agentscope) to install AgentScope.\n",
22
22
"- Install the third-party libraries used in [DAIL-SQL](https://github.com/BeachWang/DAIL-SQL/blob/main/requirements.txt).\n",
23
23
"- Prepare a model configuration. AgentScope supports both local deployed model services (CPU or GPU) and third-party services. More details and example model configurations please refer to our [tutorial](https://doc.agentscope.io/build_tutorial/model.html).\n",
24
-
"- Get familiar with service functions, ServiceToolkit module and built-in ReAct agent. The corresponding example can be found in [ReAct agent example](../conversation_with_react_agent/main.ipynb).\n",
24
+
"- Get familiar with service functions, ServiceToolkit module and built-in ReAct agent. The corresponding example can be found in [ReAct agent example](../agent_ReAct/main.ipynb).\n",
0 commit comments