Allow model string to be changed (Fixes #328) (#329)

* I think this would do it

* Update main.py
This commit is contained in:
--Explosion--
2023-06-25 05:43:56 -05:00
committed by GitHub
parent 22051774d5
commit 9b86678d61

View File

@@ -19,7 +19,7 @@ app = typer.Typer()
def main( def main(
project_path: str = typer.Argument("example", help="path"), project_path: str = typer.Argument("example", help="path"),
delete_existing: bool = typer.Argument(False, help="delete existing files"), delete_existing: bool = typer.Argument(False, help="delete existing files"),
model: str = "gpt-4", model: str = typer.Argument("gpt-4", help="model id string"),
temperature: float = 0.1, temperature: float = 0.1,
steps_config: steps.Config = typer.Option( steps_config: steps.Config = typer.Option(
steps.Config.DEFAULT, "--steps", "-s", help="decide which steps to run" steps.Config.DEFAULT, "--steps", "-s", help="decide which steps to run"