Skip to content

Commit

Permalink
fix bugs in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
geekan committed Dec 11, 2023
1 parent bf42f43 commit 10a4fef
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 18 deletions.
1 change: 0 additions & 1 deletion src/guide/contribute/contribute_guide.md
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# Contribute Guide
Will be updated soon, stay tuned.
1 change: 1 addition & 0 deletions src/guide/contribute/rfc_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Will be updated soon, stay tuned.
17 changes: 1 addition & 16 deletions src/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,21 +218,6 @@ metagpt "Write a cli snake game based on pygame"
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
```
### Code walkthrough
```python
from metagpt.software_company import SoftwareCompany
from metagpt.roles import ProjectManager, ProductManager, Architect, Engineer
async def startup(idea: str, investment: float = 3.0, n_round: int = 5):
"""Run a startup. Be a boss."""
company = SoftwareCompany()
company.hire([ProductManager(), Architect(), ProjectManager(), Engineer()])
company.invest(investment)
company.start_project(idea)
await company.run(n_round=n_round)
```
You can check `examples` for more details on single role (with knowledge base) and LLM only examples.
## QuickStart
Expand All @@ -247,7 +232,7 @@ Try it on Huggingface Space
## Citation
For now, cite the [Arxiv paper](https://arxiv.org/abs/2308.00352):
For now, cite the [arXiv paper](https://arxiv.org/abs/2308.00352):
```bibtex
@misc{hong2023metagpt,
Expand Down
2 changes: 1 addition & 1 deletion src/rfcs/demo.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# RFC Title

RFC content
TODO

0 comments on commit 10a4fef

Please sign in to comment.