Skip to content

Commit c8a9970

Browse files
Fix links to the new repo (#10)
1 parent c30b5ce commit c8a9970

File tree

6 files changed

+7
-41
lines changed

6 files changed

+7
-41
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Page](https://img.shields.io/badge/Project-Page-lightgreen.svg)](https://gptswarm.org)
22
[![arXiv](https://img.shields.io/badge/arXiv-Paper-gold.svg)](https://arxiv.org/abs/2402.16823)
3-
[![License](https://img.shields.io/badge/License-MIT-orange.svg)](https://github.com/mczhuge/GPTSwarm/blob/main/LICENSE)
3+
[![License](https://img.shields.io/badge/License-MIT-orange.svg)](https://github.com/metauto-ai/GPTSwarm/blob/main/LICENSE)
44
[![Issues](https://img.shields.io/github/issues/metauto-ai/GPTSwarm?color=00afaa)](https://github.com/metauto-ai/gptswarm/issues)
55
[![Twitter Follow](https://img.shields.io/twitter/follow/AI_KAUST?style=social)](https://twitter.com/AI_KAUST)
66
[![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}
8585
danswer = swarm.run(inputs)
8686
```
8787

88-
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).
88+
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).
8989

90-
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).
90+
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).
9191

9292
Here is a Youtube video on how to run the demo notebooks:
9393

9494
[<img src="assets/youtube_preview.png" width="75%">](https://www.youtube.com/watch?v=QOLQse5ZBV8&t=8s&ab_channel=GPTSwarm "Running swarm inference")
9595

9696

97-
**🛠 See [our experiments](https://github.com/mczhuge/GPTSwarm/tree/main/experiments) for more advanced use of our framework.**
97+
**🛠 See [our experiments](https://github.com/metauto-ai/GPTSwarm/tree/main/experiments) for more advanced use of our framework.**
9898

9999
## Class diagram
100100

experiments/README.md

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,5 @@
11
## Run the following commands to reproduce our experiments in the paper
22

3-
### Download dataset
4-
5-
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:
6-
```bash
7-
git lfs
8-
```
9-
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:
10-
```bash
11-
git lfs install
12-
git lfs pull
13-
```
14-
15-
### Include necessary submodules
16-
17-
If the project has already been cloned:
18-
```bash
19-
git submodule init
20-
git submodule update
21-
```
22-
or a one-liner:
23-
```bash
24-
git submodule update --init --recursive
25-
```
26-
273
### **MMLU**
284
Run the baseline:
295
```bash

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ dependencies = {file = ["requirements_py310_macos.txt"]}
2626
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
2727

2828
[project.urls]
29-
Homepage = "https://github.com/mczhuge/GPTSwarm"
30-
Issues = "https://github.com/mczhuge/GPTSwarm/issues"
29+
Homepage = "https://github.com/metauto-ai/GPTSwarm"
30+
Issues = "https://github.com/metauto-ai/GPTSwarm/issues"
3131

3232
[build-system]
3333
requires = ["setuptools>=61.0.0", "wheel"]

swarm/environment/agents/gaia/normal_io.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
"""
4-
Author : wenyi
5-
Review :
6-
File : node.py
7-
"""
83

94
from swarm.graph import Graph
105
from swarm.environment.operations import DirectAnswer
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +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).
1+
[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).

swarm/llm/price.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
"""
4-
Author: mczhuge
5-
Review :
6-
File: price.py
7-
"""
83

94
from swarm.utils.log import swarmlog
105
from swarm.utils.globals import Cost

0 commit comments

Comments
 (0)