Spaces:
Runtime error
Runtime error
Update startup.py
Browse files- startup.py +1 -1
startup.py
CHANGED
@@ -9,7 +9,7 @@ from metagpt.software_company import SoftwareCompany
|
|
9 |
|
10 |
|
11 |
async def startup(idea: str, investment: float = 3.0, n_round: int = 5,
|
12 |
-
code_review: bool =
|
13 |
"""Run a startup. Be a boss."""
|
14 |
company = SoftwareCompany()
|
15 |
company.hire([ProductManager(),
|
|
|
9 |
|
10 |
|
11 |
async def startup(idea: str, investment: float = 3.0, n_round: int = 5,
|
12 |
+
code_review: bool = True, run_tests: bool = True):
|
13 |
"""Run a startup. Be a boss."""
|
14 |
company = SoftwareCompany()
|
15 |
company.hire([ProductManager(),
|