mirror of
https://github.com/aljazceru/gpt-engineer.git
synced 2025-12-17 20:55:09 +01:00
Bugfixes
This commit is contained in:
4
main.py
4
main.py
@@ -19,7 +19,6 @@ def chat(
|
|||||||
run_prefix: str = typer.Option("", help="run prefix, if you want to run multiple variants of the same project and later compare them"),
|
run_prefix: str = typer.Option("", help="run prefix, if you want to run multiple variants of the same project and later compare them"),
|
||||||
model: str = "gpt-4",
|
model: str = "gpt-4",
|
||||||
temperature: float = 0.1,
|
temperature: float = 0.1,
|
||||||
max_tokens: int = 8192,
|
|
||||||
):
|
):
|
||||||
|
|
||||||
if project_path is None:
|
if project_path is None:
|
||||||
@@ -32,7 +31,6 @@ def chat(
|
|||||||
ai = AI(
|
ai = AI(
|
||||||
model=model,
|
model=model,
|
||||||
temperature=temperature,
|
temperature=temperature,
|
||||||
max_tokens=max_tokens,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
dbs = DBs(
|
dbs = DBs(
|
||||||
@@ -50,4 +48,4 @@ def chat(
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
app()
|
app()
|
||||||
|
|||||||
Reference in New Issue
Block a user