From c8a997013e82225dfcec58e72111ce68038d1bf9 Mon Sep 17 00:00:00 2001 From: Dmitrii Khizbullin <32495260+Obs01ete@users.noreply.github.com> Date: Sun, 3 Mar 2024 14:06:31 +0300 Subject: [PATCH] Fix links to the new repo (#10) --- README.md | 8 ++++---- experiments/README.md | 24 ---------------------- pyproject.toml | 4 ++-- swarm/environment/agents/gaia/normal_io.py | 5 ----- swarm/environment/tools/coding/README.md | 2 +- swarm/llm/price.py | 5 ----- 6 files changed, 7 insertions(+), 41 deletions(-) diff --git a/README.md b/README.md index 05c994a..e0bde01 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Page](https://img.shields.io/badge/Project-Page-lightgreen.svg)](https://gptswarm.org) [![arXiv](https://img.shields.io/badge/arXiv-Paper-gold.svg)](https://arxiv.org/abs/2402.16823) -[![License](https://img.shields.io/badge/License-MIT-orange.svg)](https://github.com/mczhuge/GPTSwarm/blob/main/LICENSE) +[![License](https://img.shields.io/badge/License-MIT-orange.svg)](https://github.com/metauto-ai/GPTSwarm/blob/main/LICENSE) [![Issues](https://img.shields.io/github/issues/metauto-ai/GPTSwarm?color=00afaa)](https://github.com/metauto-ai/gptswarm/issues) [![Twitter Follow](https://img.shields.io/twitter/follow/AI_KAUST?style=social)](https://twitter.com/AI_KAUST) [![Wechat](https://img.shields.io/badge/Wechat-7BB32E?logo=wechat&logoColor=white)](https://metauto.ai/images/wechat.jpeg) @@ -85,16 +85,16 @@ inputs = {"task": task, "files": files} danswer = swarm.run(inputs) ``` -Check out the minimal Swarm example in Colab here: [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/mczhuge/GPTSwarm/blob/main/notebooks/demo_swarm.ipynb). +Check out the minimal Swarm example in Colab here: [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/metauto-ai/GPTSwarm/blob/main/notebooks/demo_swarm.ipynb). -See how to create a custom Agent and run a Swarm with it here: [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/mczhuge/GPTSwarm/blob/main/notebooks/demo_custom_agent.ipynb). +See how to create a custom Agent and run a Swarm with it here: [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/metauto-ai/GPTSwarm/blob/main/notebooks/demo_custom_agent.ipynb). Here is a Youtube video on how to run the demo notebooks: [](https://www.youtube.com/watch?v=QOLQse5ZBV8&t=8s&ab_channel=GPTSwarm "Running swarm inference") -**🛠 See [our experiments](https://github.com/mczhuge/GPTSwarm/tree/main/experiments) for more advanced use of our framework.** +**🛠 See [our experiments](https://github.com/metauto-ai/GPTSwarm/tree/main/experiments) for more advanced use of our framework.** ## Class diagram diff --git a/experiments/README.md b/experiments/README.md index 1abeba4..8e49987 100644 --- a/experiments/README.md +++ b/experiments/README.md @@ -1,29 +1,5 @@ ## Run the following commands to reproduce our experiments in the paper -### Download dataset - -The datasets are stored in git LFS. If git LFS is already installed in your system, no action is required. To check if git LFS is installed, run: -```bash -git lfs -``` -If you see an error message, install git LFS via this instruction](https://docs.github.com/en/repositories/working-with-files/managing-large-files/installing-git-large-file-storage). Then run: -```bash -git lfs install -git lfs pull -``` - -### Include necessary submodules - -If the project has already been cloned: -```bash -git submodule init -git submodule update -``` -or a one-liner: -```bash -git submodule update --init --recursive -``` - ### **MMLU** Run the baseline: ```bash diff --git a/pyproject.toml b/pyproject.toml index 2269552..fbed478 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,8 +26,8 @@ dependencies = {file = ["requirements_py310_macos.txt"]} dev = ["black", "bumpver", "isort", "pip-tools", "pytest"] [project.urls] -Homepage = "https://github.com/mczhuge/GPTSwarm" -Issues = "https://github.com/mczhuge/GPTSwarm/issues" +Homepage = "https://github.com/metauto-ai/GPTSwarm" +Issues = "https://github.com/metauto-ai/GPTSwarm/issues" [build-system] requires = ["setuptools>=61.0.0", "wheel"] diff --git a/swarm/environment/agents/gaia/normal_io.py b/swarm/environment/agents/gaia/normal_io.py index 693ec3e..c1f446d 100644 --- a/swarm/environment/agents/gaia/normal_io.py +++ b/swarm/environment/agents/gaia/normal_io.py @@ -1,10 +1,5 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -""" -Author : wenyi -Review : -File : node.py -""" from swarm.graph import Graph from swarm.environment.operations import DirectAnswer diff --git a/swarm/environment/tools/coding/README.md b/swarm/environment/tools/coding/README.md index 22debb9..72d2f90 100644 --- a/swarm/environment/tools/coding/README.md +++ b/swarm/environment/tools/coding/README.md @@ -1 +1 @@ -[executor_types.py](https://github.com/mczhuge/GPTSwarm/blob/main/swarm/environment/tools/coding/executor_types.py), [executor_utils.py](https://github.com/mczhuge/GPTSwarm/blob/main/swarm/environment/tools/coding/executor_utils.py) and [python_executor.py](https://github.com/mczhuge/GPTSwarm/blob/main/swarm/environment/tools/coding/python_executor.py) under this directory are directly adopted from the [Reflexion project](https://github.com/noahshinn/reflexion/tree/main/programming_runs/executors). +[executor_types.py](https://github.com/metauto-ai/GPTSwarm/blob/main/swarm/environment/tools/coding/executor_types.py), [executor_utils.py](https://github.com/metauto-ai/GPTSwarm/blob/main/swarm/environment/tools/coding/executor_utils.py) and [python_executor.py](https://github.com/metauto-ai/GPTSwarm/blob/main/swarm/environment/tools/coding/python_executor.py) under this directory are directly adopted from the [Reflexion project](https://github.com/noahshinn/reflexion/tree/main/programming_runs/executors). diff --git a/swarm/llm/price.py b/swarm/llm/price.py index 7e25b5c..0ddaacd 100644 --- a/swarm/llm/price.py +++ b/swarm/llm/price.py @@ -1,10 +1,5 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -""" -Author: mczhuge -Review : -File: price.py -""" from swarm.utils.log import swarmlog from swarm.utils.globals import Cost