diff --git a/gpt_engineer/applications/cli/main.py b/gpt_engineer/applications/cli/main.py index 46400ed873..f0c10235bd 100644 --- a/gpt_engineer/applications/cli/main.py +++ b/gpt_engineer/applications/cli/main.py @@ -28,11 +28,13 @@ import logging import os -from pathlib import Path from importlib.util import find_spec +from pathlib import Path + import openai -import typer import toml +import typer + from dotenv import load_dotenv from gpt_engineer.applications.cli.cli_agent import CliAgent @@ -47,7 +49,6 @@ from gpt_engineer.core.preprompts_holder import PrepromptsHolder from gpt_engineer.tools.custom_steps import clarified_gen, lite_gen, self_heal - # Load the names of the optional dependencies from the pyprojecct file and determine whether # they can be imported with open("pyproject.toml", "r") as file: