From 7c85f87389a4f4b4b0f2d76c3e9f2c7901fca2ad Mon Sep 17 00:00:00 2001 From: garylin2099 Date: Fri, 15 Dec 2023 21:07:55 +0800 Subject: [PATCH] fix error --- src/en/guide/get_started/quickstart.md | 2 +- src/zh/guide/get_started/quickstart.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/en/guide/get_started/quickstart.md b/src/en/guide/get_started/quickstart.md index 156d6be4..69b4b53e 100644 --- a/src/en/guide/get_started/quickstart.md +++ b/src/en/guide/get_started/quickstart.md @@ -27,7 +27,7 @@ We use environment variables for a quick demo. For formal usage of MetaGPT, we r > Below is a breakdown of the [software startup example](https://github.com/geekan/MetaGPT/blob/main/metagpt/startup.py). If you install MetaGPT with the git clone approach, simply run > > ``` -> metagpt --idea "write a cli blackjack game" +> metagpt "write a cli blackjack game" > ``` > > Now, let's get started! We will create a team of agents to write software based on one line of our instruction. diff --git a/src/zh/guide/get_started/quickstart.md b/src/zh/guide/get_started/quickstart.md index e053438a..2f48f42a 100644 --- a/src/zh/guide/get_started/quickstart.md +++ b/src/zh/guide/get_started/quickstart.md @@ -25,7 +25,7 @@ os.environ["OPENAI_API_MODEL"] = "gpt-4" > 下面为 [software startup example](https://github.com/geekan/MetaGPT/blob/main/metagpt/startup.py) 的节选。如果你使用`git clone`方法进行安装,只需简单执行 > > ``` -> metagpt --idea "write a cli blackjack game" +> metagpt "write a cli blackjack game" > ``` > > 现在,让我们开始吧!我们将创建一个多智能体团队,根据我们的一句话需求编写软件。