We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a9716d commit ec35094Copy full SHA for ec35094
gpt_engineer/applications/cli/main.py
@@ -28,11 +28,13 @@
28
import logging
29
import os
30
31
-from pathlib import Path
32
from importlib.util import find_spec
+from pathlib import Path
33
+
34
import openai
-import typer
35
import toml
36
+import typer
37
38
from dotenv import load_dotenv
39
40
from gpt_engineer.applications.cli.cli_agent import CliAgent
@@ -47,7 +49,6 @@
47
49
from gpt_engineer.core.preprompts_holder import PrepromptsHolder
48
50
from gpt_engineer.tools.custom_steps import clarified_gen, lite_gen, self_heal
51
-
52
# Load the names of the optional dependencies from the pyprojecct file and determine whether
53
# they can be imported
54
with open("pyproject.toml", "r") as file:
0 commit comments