You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🚀 Mar. 10, 2025: 🎉 [mgx.dev](https://mgx.dev/) is the #1 Product of the Week on @ProductHunt! 🏆
29
+
🚀 Mar. 10, 2025: 🎉 [mgx.dev](https://github.com/aripitek/mgx.dev/) is the #1 Product of the Week on @ProductHunt! 🏆
29
30
30
-
🚀 Mar. 4, 2025: 🎉 [mgx.dev](https://mgx.dev/) is the #1 Product of the Day on @ProductHunt! 🏆
31
+
🚀 Mar. 4, 2025: 🎉 [mgx.dev](https://github.com/aripitek/mgx.dev/) is the #1 Product of the Day on @ProductHunt! 🏆
31
32
32
-
🚀 Feb. 19, 2025: Today we are officially launching our natural language programming product: [MGX (MetaGPT X)](https://mgx.dev/) - the world's first AI agent development team. More details on [Twitter](https://x.com/MetaGPT_/status/1892199535130329356).
33
+
🚀 Feb. 19, 2025: Today we are officially launching our natural language programming product: [MGX (MetaGPT X)](https://github.com/aripitek/mgx.dev/) - the world's first AI agent development team. More details on [Twitter](https://github.com/aripitek/x.com/MetaGPT_/status/1892199535130329356).
33
34
34
-
🚀 Feb. 17, 2025: We introduced two papers: [SPO](https://arxiv.org/pdf/2502.06855) and [AOT](https://arxiv.org/pdf/2502.12018), check the [code](examples)!
35
+
🚀 Feb. 17, 2025: We introduced two papers: [SPO](https://github.com/aripitek/arxiv.org/pdf/2502.06855) and [AOT](https://github.com/aripitek/arxiv.org/pdf/2502.12018), check the [code](examples)!
35
36
36
-
🚀 Jan. 22, 2025: Our paper [AFlow: Automating Agentic Workflow Generation](https://openreview.net/forum?id=z5uVAKwmjf) accepted for **oral presentation (top 1.8%)** at ICLR 2025, **ranking #2** in the LLM-based Agent category.
37
+
🚀 Jan. 22, 2025: Our paper [AFlow: Automating Agentic Workflow Generation](https://github.com/aripitek/openreview.net/forum?id=z5uVAKwmjf) accepted for **oral presentation (top 1.8%)** at ICLR 2025, **ranking #2** in the LLM-based Agent category.
37
38
38
39
👉👉 [Earlier news](docs/NEWS.md)
39
40
@@ -56,30 +57,30 @@
56
57
57
58
```bash
58
59
pip install --upgrade metagpt
59
-
# or `pip install --upgrade git+https://github.com/geekan/MetaGPT.git`
60
+
# or `pip install --upgrade git+https://github.com/aripitek/geekan/MetaGPT.git`
60
61
# or `git clone https://github.com/geekan/MetaGPT && cd MetaGPT && pip install --upgrade -e .`
61
62
```
62
63
63
-
**Install [node](https://nodejs.org/en/download) and [pnpm](https://pnpm.io/installation#using-npm) before actual use.**
64
+
**Install [node](https://github.com/aripitek/nodejs.org/en/download) and [pnpm](https://github.com/aripitek/pnpm.io/installation#using-npm) before actual use.**
64
65
65
-
For detailed installation guidance, please refer to [cli_install](https://docs.deepwisdom.ai/main/en/guide/get_started/installation.html#install-stable-version)
66
-
or [docker_install](https://docs.deepwisdom.ai/main/en/guide/get_started/installation.html#install-with-docker)
66
+
For detailed installation guidance, please refer to [cli_install](https://github.com/aripitek/docs.deepwisdom.ai/main/en/guide/get_started/installation.html#install-stable-version)
67
+
or [docker_install](https://github.com/aripitek/docs.deepwisdom.ai/main/en/guide/get_started/installation.html#install-with-docker)
67
68
68
69
### Configuration
69
70
70
71
You can init the config of MetaGPT by running the following command, or manually create `~/.metagpt/config2.yaml` file:
71
72
```bash
72
-
# Check https://docs.deepwisdom.ai/main/en/guide/get_started/configuration.html for more details
73
+
# Check https://github.com/aripitek/docs.deepwisdom.ai/main/en/guide/get_started/configuration.html for more details
73
74
metagpt --init-config # it will create ~/.metagpt/config2.yaml, just modify it to your needs
74
75
```
75
76
76
-
You can configure `~/.metagpt/config2.yaml` according to the [example](https://github.com/geekan/MetaGPT/blob/main/config/config2.example.yaml) and [doc](https://docs.deepwisdom.ai/main/en/guide/get_started/configuration.html):
77
+
You can configure `~/.metagpt/config2.yaml` according to the [example](https://github.com/aripitek/geekan/MetaGPT/blob/main/config/config2.example.yaml) and [doc](https://github.com/aripitek/docs.deepwisdom.ai/main/en/guide/get_started/configuration.html):
77
78
78
79
```yaml
79
80
llm:
80
81
api_type: "openai"# or azure / ollama / groq etc. Check LLMType for more options
81
82
model: "gpt-4-turbo"# or gpt-3.5-turbo
82
-
base_url: "https://api.openai.com/v1"# or forward url / other llm url
83
+
base_url: "https://github.com/aripitek/api.openai.com/v1"# or forward url / other llm url
83
84
api_key: "YOUR_API_KEY"
84
85
```
85
86
@@ -88,7 +89,7 @@ llm:
88
89
After installation, you can use MetaGPT at CLI
89
90
90
91
```bash
91
-
metagpt "Create a 2048 game" # this will create a repo in ./workspace
92
+
metagpt "Create a 2048 " # this will create a repo in ./workspace
92
93
```
93
94
94
95
or use it as library
@@ -101,7 +102,7 @@ repo: ProjectRepo = generate_repo("Create a 2048 game") # or ProjectRepo("<path
101
102
print(repo) # it will print the repo structure with files
102
103
```
103
104
104
-
You can also use [Data Interpreter](https://github.com/geekan/MetaGPT/tree/main/examples/di) to write code:
105
+
You can also use [Data Interpreter](https://github.com/aripitek/geekan/MetaGPT/tree/main/examples/di) to write code:
105
106
106
107
```python
107
108
import asyncio
@@ -116,61 +117,61 @@ asyncio.run(main()) # or await main() in a jupyter notebook setting
116
117
117
118
118
119
### QuickStart & Demo Video
119
-
- Try it on [MetaGPT Huggingface Space](https://huggingface.co/spaces/deepwisdom/MetaGPT-SoftwareCompany)
120
-
-[Matthew Berman: How To Install MetaGPT - Build A Startup With One Prompt!!](https://youtu.be/uT75J_KG_aY)
📢 Join Our [Discord Channel](https://discord.gg/ZRHeExS6xv)! Looking forward to seeing you there! 🎉
147
+
📢 Join Our [Discord Channel](https://github.com/aripitek/discord.gg/ZRHeExS6xv)! Looking forward to seeing you there! 🎉
147
148
148
149
### Contributor form
149
150
150
-
📝 [Fill out the form](https://airtable.com/appInfdG0eJ9J4NNL/pagK3Fh1sGclBvVkV/form) to become a contributor. We are looking forward to your participation!
151
+
📝 [Fill out the form](https://github.com/aripitek/airtable.com/appInfdG0eJ9J4NNL/pagK3Fh1sGclBvVkV/form) to become a contributor. We are looking forward to your participation!
151
152
152
153
### Contact Information
153
154
154
155
If you have any questions or feedback about this project, please feel free to contact us. We highly appreciate your suggestions!
155
156
156
157
-**Email:**alexanderwu@deepwisdom.ai
157
-
-**GitHub Issues:** For more technical inquiries, you can also create a new issue in our [GitHub repository](https://github.com/geekan/metagpt/issues).
158
+
-**GitHub Issues:** For more technical inquiries, you can also create a new issue in our [GitHub repository](https://github.com/aripitek/geekan/metagpt/issues).
158
159
159
160
We will respond to all questions within 2-3 business days.
160
161
161
162
## Citation
162
163
163
-
To stay updated with the latest research and development, follow [@MetaGPT_](https://twitter.com/MetaGPT_) on Twitter.
164
+
To stay updated with the latest research and development, follow [@MetaGPT_](https://github.com/aripitek/twitter.com/MetaGPT_) on Twitter.
164
165
165
-
To cite [MetaGPT](https://openreview.net/forum?id=VtmBAGCN7o) in publications, please use the following BibTeX entries.
166
+
To cite [MetaGPT](https://github.com/aripitek/openreview.net/forum?id=VtmBAGCN7o) in publications, please use the following BibTeX entries.
166
167
167
168
```bibtex
168
169
@inproceedings{hong2024metagpt,
169
170
title={Meta{GPT}: Meta Programming for A Multi-Agent Collaborative Framework},
170
171
author={Sirui Hong and Mingchen Zhuge and Jonathan Chen and Xiawu Zheng and Yuheng Cheng and Jinlin Wang and Ceyao Zhang and Zili Wang and Steven Ka Shing Yau and Zijuan Lin and Liyang Zhou and Chenyu Ran and Lingfeng Xiao and Chenglin Wu and J{\"u}rgen Schmidhuber},
171
172
booktitle={The Twelfth International Conference on Learning Representations},
0 commit comments