We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35864e0 commit 42350dbCopy full SHA for 42350db
gpt_engineer/main.py
@@ -29,7 +29,7 @@ def load_env_if_needed():
29
def load_prompt(dbs: DBs):
30
if dbs.input.get("prompt"):
31
return dbs.input.get("prompt")
32
-
+
33
if dbs.workspace.get("prompt"):
34
dbs.input["prompt"] = dbs.workspace.get("prompt")
35
del dbs.workspace["prompt"]
@@ -95,8 +95,9 @@ def main(
95
azure_endpoint=azure_endpoint,
96
)
97
98
99
- project_path = os.path.abspath(project_path) # resolve the string to a valid path (eg a/b/../c to a/c)
+ project_path = os.path.abspath(
+ project_path
100
+ ) # resolve the string to a valid path (eg a/b/../c to a/c)
101
path = Path(project_path).absolute()
102
print("Running gpt-engineer in", path, "\n")
103
0 commit comments