Update startup.py

set default params
This commit is contained in:
stellaHSR 2023-09-04 19:19:37 +08:00 committed by GitHub
parent ddf4697381
commit 689aa935eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,9 +44,9 @@ def main(
idea: str,
investment: float = 3.0,
n_round: int = 5,
code_review: bool = False,
code_review: bool = True,
run_tests: bool = False,
implement: bool = False
implement: bool = True
):
"""
We are a software startup comprised of AI. By investing in us,
@ -66,4 +66,4 @@ def main(
if __name__ == '__main__':
fire.Fire(main)