forked from modelscope/agentscope
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add distributed examples in notebook (#10)
* add distributed examples in notebook --------- Co-authored-by: panxuchen.pxc <[email protected]>
- Loading branch information
Showing
3 changed files
with
347 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"id": "478efc38-ac99-40a7-9e13-b72840f14e19", | ||
"metadata": {}, | ||
"source": [ | ||
"# Distributed debate" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "2f0c5593-c810-4c93-90de-b2c389b878ab", | ||
"metadata": { | ||
"collapsed": true | ||
}, | ||
"source": [ | ||
"This example simulates a debate competition with three participant agents, including the affirmative side (Pro), the negative side (Con), and the adjudicator (Judge). \n", | ||
"\n", | ||
"Pro believes that AGI can be achieved using the GPT model framework, while Con contests it. Judge listens to both sides' arguments and provides an analytical judgment on which side presented a more compelling and reasonable case.\n", | ||
"\n", | ||
"A fully distributed version can be found in `examples/distributed/distributed_debate.py`.\n", | ||
"Here we provide a standalone multi-process version." | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "321e5966-752c-4a28-b63e-3239008d6b3a", | ||
"metadata": {}, | ||
"source": [ | ||
"To install AgentScope, please follow the steps in [README.md](https://github.com/alibaba/AgentScope/blob/main/README.md#installation)." | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "fc97a3fc-6bed-4a0f-bf61-e977630a159c", | ||
"metadata": {}, | ||
"source": [ | ||
"First, we need to set the model configs of AgentScope." | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "7924b86d", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"model_configs = [\n", | ||
" {\n", | ||
" \"type\": \"openai\",\n", | ||
" \"name\": \"gpt-3.5-turbo\",\n", | ||
" \"parameters\": {\n", | ||
" \"api_key\": \"xxx\",\n", | ||
" \"organization_id\": \"xxx\",\n", | ||
" \"temperature\": 0.0\n", | ||
" }\n", | ||
" },\n", | ||
" {\n", | ||
" \"type\": \"openai\",\n", | ||
" \"name\": \"gpt-4\",\n", | ||
" \"parameters\": {\n", | ||
" \"api_key\": \"xxx\",\n", | ||
" \"organization_id\": \"xxx\",\n", | ||
" \"temperature\": 0.0\n", | ||
" }\n", | ||
" }\n", | ||
"]" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "0072fc64", | ||
"metadata": {}, | ||
"source": [ | ||
"Second, let's start the three agents in the debate. Note that each agent here will automatically starts a sub-process, and the `reply` method is executed within the sub-process." | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "260aab10", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"import agentscope\n", | ||
"from agentscope.agents.rpc_dialog_agent import RpcDialogAgent\n", | ||
"\n", | ||
"agentscope.init(model_configs=model_configs)\n", | ||
"\n", | ||
"pro_agent = RpcDialogAgent(\n", | ||
" name=\"Pro\",\n", | ||
" port=12001,\n", | ||
" model=\"gpt-3.5-turbo\",\n", | ||
" use_memory=True,\n", | ||
" sys_prompt=\"Assume the role of a debater who is arguing in favor of the proposition that AGI (Artificial General Intelligence) can be achieved using the GPT model framework. Construct a coherent and persuasive argument, including scientific, technological, and theoretical evidence, to support the statement that GPT models are a viable path to AGI. Highlight the advancements in language understanding, adaptability, and scalability of GPT models as key factors in progressing towards AGI.\",\n", | ||
")\n", | ||
"con_agent = RpcDialogAgent(\n", | ||
" name=\"Con\",\n", | ||
" port=12002,\n", | ||
" model=\"gpt-3.5-turbo\",\n", | ||
" use_memory=True,\n", | ||
" sys_prompt=\"Assume the role of a debater who is arguing against the proposition that AGI can be achieved using the GPT model framework. Construct a coherent and persuasive argument, including scientific, technological, and theoretical evidence, to support the statement that GPT models, while impressive, are insufficient for reaching AGI. Discuss the limitations of GPT models such as lack of understanding, consciousness, ethical reasoning, and general problem-solving abilities that are essential for true AGI.\",\n", | ||
")\n", | ||
"judge_agent = RpcDialogAgent(\n", | ||
" name=\"Judge\",\n", | ||
" port=12003,\n", | ||
" model=\"gpt-3.5-turbo\",\n", | ||
" use_memory=True,\n", | ||
" sys_prompt=\"Assume the role of an impartial judge in a debate where the affirmative side argues that AGI can be achieved using the GPT model framework, and the negative side contests this. Listen to both sides' arguments and provide an analytical judgment on which side presented a more compelling and reasonable case. Consider the strength of the evidence, the persuasiveness of the reasoning, and the overall coherence of the arguments presented by each side.\"\n", | ||
")" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "01ca8024-fa7e-4d7f-bf35-a78511a47ab3", | ||
"metadata": {}, | ||
"source": [ | ||
"Next, write the main debate competition process.\n", | ||
"Note that we need to use `msghub` to ensure each agent in the debate knows the speeaches of all other agents." | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "6391fb00-f74c-42c5-b742-56b7a773f875", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"from agentscope.msghub import msghub\n", | ||
"from agentscope.message import Msg\n", | ||
"from agentscope.utils.logging_utils import logger\n", | ||
"\n", | ||
"# Rules explained before the debate begins \n", | ||
"ANNOUNCEMENT = \"\"\"\n", | ||
"Welcome to the debate on whether Artificial General Intelligence (AGI) can be achieved using the GPT model framework. This debate will consist of three rounds. In each round, the affirmative side will present their argument first, followed by the negative side. After both sides have presented, the adjudicator will summarize the key points and analyze the strengths of the arguments.\n", | ||
"\n", | ||
"The rules are as follows:\n", | ||
"\n", | ||
"Each side must present clear, concise arguments backed by evidence and logical reasoning.\n", | ||
"No side may interrupt the other while they are presenting their case.\n", | ||
"After both sides have presented, the adjudicator will have time to deliberate and will then provide a summary, highlighting the most persuasive points from both sides.\n", | ||
"The adjudicator's summary will not declare a winner for the individual rounds but will focus on the quality and persuasiveness of the arguments.\n", | ||
"At the conclusion of the three rounds, the adjudicator will declare the overall winner based on which side won two out of the three rounds, considering the consistency and strength of the arguments throughout the debate.\n", | ||
"Let us begin the first round. The affirmative side: please present your argument for why AGI can be achieved using the GPT model framework.\n", | ||
"\"\"\"\n", | ||
"\n", | ||
"\n", | ||
"\"\"\"Setup the main debate competition process\"\"\"\n", | ||
"participants = [pro_agent, con_agent, judge_agent]\n", | ||
"hint = Msg(name=\"System\", content=ANNOUNCEMENT)\n", | ||
"x = None\n", | ||
"with msghub(participants=participants, announcement=hint):\n", | ||
" for _ in range(3):\n", | ||
" pro_resp = pro_agent(x)\n", | ||
" logger.chat(pro_resp.update_value())\n", | ||
" con_resp = con_agent(pro_resp)\n", | ||
" logger.chat(con_resp.update_value())\n", | ||
" x = judge_agent(con_resp)\n", | ||
" logger.chat(x.update_value())\n", | ||
" x = judge_agent(x)\n", | ||
" logger.chat(x.update_value())\n" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "dbfc5033", | ||
"metadata": {}, | ||
"source": [ | ||
"Finally, just wait for the above code to run and watch the debate proceed." | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3 (ipykernel)", | ||
"language": "python", | ||
"name": "python3" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.10.9" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 5 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"id": "d8bb3d3e-eec5-4a14-bb36-9fdf6b7d00b2", | ||
"metadata": {}, | ||
"source": [ | ||
"# Distributed dialogue" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "8626bd94-3a0b-4c61-85d6-b157ffc5ac25", | ||
"metadata": {}, | ||
"source": [ | ||
"This example initializes an assistant agent and a user agent as separate processes and uses RPC to communicate between them. The full codes can be found in in `examples/distributed/distributed_dialog.py`" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "605ebd1c-3222-4dce-b974-6377da37d555", | ||
"metadata": {}, | ||
"source": [ | ||
"To install AgentScope, please follow the steps in [README.md](https://github.com/alibaba/AgentScope/blob/main/README.md#installation)." | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "2417b9fc", | ||
"metadata": {}, | ||
"source": [ | ||
"First, we need to set the model configs properly." | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "8d61bef5", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"model_configs = [\n", | ||
" {\n", | ||
" \"type\": \"openai\",\n", | ||
" \"name\": \"gpt-3.5-turbo\",\n", | ||
" \"parameters\": {\n", | ||
" \"api_key\": \"xxx\",\n", | ||
" \"organization_id\": \"xxx\",\n", | ||
" \"temperature\": 0.0\n", | ||
" }\n", | ||
" },\n", | ||
" {\n", | ||
" \"type\": \"openai\",\n", | ||
" \"name\": \"gpt-4\",\n", | ||
" \"parameters\": {\n", | ||
" \"api_key\": \"xxx\",\n", | ||
" \"organization_id\": \"xxx\",\n", | ||
" \"temperature\": 0.0\n", | ||
" }\n", | ||
" }\n", | ||
"]" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "710f835a-ecc8-481f-a4ab-7f0db33e68f4", | ||
"metadata": {}, | ||
"source": [ | ||
"Then, we need to initialize two agents: an assistant agent and a user agnent.\n", | ||
"\n", | ||
"To facilitate display on jupyter, the agents will be started in a standalone multi-process mode. For a fully distributed version, please refer to `examples/distributed/distributed_dialog.py`." | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "bf3226dc", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"import agentscope\n", | ||
"from agentscope.agents.user_agent import UserAgent\n", | ||
"from agentscope.agents.rpc_dialog_agent import RpcDialogAgent\n", | ||
"\n", | ||
"agentscope.init(\n", | ||
" model_configs=model_configs\n", | ||
")\n", | ||
"\n", | ||
"assistant_agent = RpcDialogAgent(\n", | ||
" name=\"Assistant\",\n", | ||
" port=12010,\n", | ||
" sys_prompt=\"You are a helpful assistant.\",\n", | ||
" model=\"gpt-3.5-turbo\",\n", | ||
" use_memory=True,\n", | ||
")\n", | ||
"user_agent = UserAgent(\n", | ||
" name=\"User\",\n", | ||
")" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "dd70c37d", | ||
"metadata": {}, | ||
"source": [ | ||
"Finally, let's write the main process of the dialogue and chat with the assistant." | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"id": "b0f3c851", | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"import time\n", | ||
"from loguru import logger\n", | ||
"\n", | ||
"msg = user_agent()\n", | ||
"while not msg.content.endswith(\"exit\"):\n", | ||
" msg = assistant_agent(msg)\n", | ||
" logger.chat(msg.update_value())\n", | ||
" time.sleep(0.5)\n", | ||
" msg = user_agent(msg)" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3 (ipykernel)", | ||
"language": "python", | ||
"name": "python3" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.10.9" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 5 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters