Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix links to the new repo #10

Merged
merged 3 commits into from
Mar 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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:

[<img src="assets/youtube_preview.png" width="75%">](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

Expand Down
24 changes: 0 additions & 24 deletions experiments/README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
5 changes: 0 additions & 5 deletions swarm/environment/agents/gaia/normal_io.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion swarm/environment/tools/coding/README.md
Original file line number Diff line number Diff line change
@@ -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).
5 changes: 0 additions & 5 deletions swarm/llm/price.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading