From ebb89dabc8c396119791de4fadf0c7c1cd71be30 Mon Sep 17 00:00:00 2001 From: qbc Date: Wed, 24 Jan 2024 16:46:40 +0800 Subject: [PATCH] change hyperlink to ms --- README.md | 2 +- docs/sphinx_doc/source/index.rst | 2 +- docs/sphinx_doc/source/tutorial/101-installation.md | 2 +- docs/sphinx_doc/source/tutorial/104-usecase.md | 6 +++--- docs/sphinx_doc/source/tutorial/301-community.md | 2 +- notebook/conversation.ipynb | 2 +- setup.py | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 716f30557..020fd2d5f 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ To install AgentScope, you need to have Python 3.9 or higher installed. ```bash # Pull the source code from github -git clone https://github.com/alibaba/AgentScope.git +git clone https://github.com/modelscope/agentscope.git # Install the package in editable mode cd AgentScope diff --git a/docs/sphinx_doc/source/index.rst b/docs/sphinx_doc/source/index.rst index feb525bfd..8f32751d5 100644 --- a/docs/sphinx_doc/source/index.rst +++ b/docs/sphinx_doc/source/index.rst @@ -3,7 +3,7 @@ You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. -:github_url: https://github.com/alibaba/agentscope +:github_url: https://github.com/modelscope/agentscope AgentScope Documentation ====================================== diff --git a/docs/sphinx_doc/source/tutorial/101-installation.md b/docs/sphinx_doc/source/tutorial/101-installation.md index fdde47b4f..633c3cec1 100644 --- a/docs/sphinx_doc/source/tutorial/101-installation.md +++ b/docs/sphinx_doc/source/tutorial/101-installation.md @@ -54,7 +54,7 @@ For users who prefer to install AgentScope directly from the source code, follow ```bash # Pull the source code from Github -git clone https://github.com/alibaba/AgentScope.git +git clone https://github.com/modelscope/agentscope.git cd AgentScope # For centralized multi-agent applications diff --git a/docs/sphinx_doc/source/tutorial/104-usecase.md b/docs/sphinx_doc/source/tutorial/104-usecase.md index a034d8bcc..f1502cfcf 100644 --- a/docs/sphinx_doc/source/tutorial/104-usecase.md +++ b/docs/sphinx_doc/source/tutorial/104-usecase.md @@ -321,9 +321,9 @@ Now you've grasped how to conveniently set up a multi-agent application with Age ## Other Example Applications -- Example of Simple Group Conversation: [examples/Simple Conversation](https://github.com/alibaba/AgentScope/tree/main/examples/simple_chat/README.md) -- Example of Werewolves: [examples/Werewolves](https://github.com/alibaba/AgentScope/tree/main/examples/werewolves/README.md) -- Example of Distributed Agents: [examples/Distributed Agents](https://github.com/alibaba/AgentScope/tree/main/examples/distributed_agents/README.md) +- Example of Simple Group Conversation: [examples/Simple Conversation](https://github.com/modelscope/agentscope/tree/main/examples/simple_chat/README.md) +- Example of Werewolves: [examples/Werewolves](https://github.com/modelscope/agentscope/tree/main/examples/werewolves/README.md) +- Example of Distributed Agents: [examples/Distributed Agents](https://github.com/modelscope/agentscope/tree/main/examples/distributed_agents/README.md) - ... [[Return to the top]](#crafting-your-first-application) diff --git a/docs/sphinx_doc/source/tutorial/301-community.md b/docs/sphinx_doc/source/tutorial/301-community.md index 2e765af6f..38c0c0140 100644 --- a/docs/sphinx_doc/source/tutorial/301-community.md +++ b/docs/sphinx_doc/source/tutorial/301-community.md @@ -6,7 +6,7 @@ Becoming a part of the AgentScope community allows you to connect with other use ## GitHub -- **Star and Watch the AgentScope Repository:** Show your support and stay updated on our progress by starring and watching the [AgentScope repository](https://github.com/alibaba/AgentScope). +- **Star and Watch the AgentScope Repository:** Show your support and stay updated on our progress by starring and watching the [AgentScope repository](https://github.com/modelscope/agentscope). - **Submit Issues and Pull Requests:** If you encounter any problems or have suggestions, submit an issue to the relevant repository. We also welcome pull requests for bug fixes, improvements, or new features. ## Discord diff --git a/notebook/conversation.ipynb b/notebook/conversation.ipynb index 332cafa93..d16f9d0d4 100644 --- a/notebook/conversation.ipynb +++ b/notebook/conversation.ipynb @@ -118,7 +118,7 @@ "id": "adc601a8-144f-4e42-bc86-f0e14adb39b5", "metadata": {}, "source": [ - "To code it easier, you can use pipeline in [`agentscope.pipelines`](https://github.com/alibaba/AgentScope/blob/main/src/agentscope/pipelines/pipeline.py) and [`agentscope.pipelines.functional`](https://github.com/alibaba/AgentScope/blob/main/src/agentscope/pipelines/functional.py)." + "To code it easier, you can use pipeline in [`agentscope.pipelines`](https://github.com/modelscope/agentscope/blob/main/src/agentscope/pipelines/pipeline.py) and [`agentscope.pipelines.functional`](https://github.com/modelscope/agentscope/blob/main/src/agentscope/pipelines/functional.py)." ] }, { diff --git a/setup.py b/setup.py index 7ae6b4d73..ae2189fa1 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ ).group(1) NAME = "agentscope" -URL = "https://github.com/alibaba/AgentScope" +URL = "https://github.com/modelscope/agentscope" rpc_requires = [ "grpcio==1.60.0",