aboutsummaryrefslogtreecommitdiff
path: root/autogpts
diff options
context:
space:
mode:
authorGravatar 王苏云 <92081796+Code-WSY@users.noreply.github.com> 2024-04-29 23:41:30 +0800
committerGravatar GitHub <noreply@github.com> 2024-04-29 10:41:30 -0500
commit3b00e8229cb8fbece85ef4c7aaadee347f63d41f (patch)
treed5d9a6a14120ac82fd02b444e03aa3d945ff1922 /autogpts
parentfix(autogpt): Revert line in `poetry.lock` (#7113) (diff)
downloadAuto-GPT-3b00e8229cb8fbece85ef4c7aaadee347f63d41f.tar.gz
Auto-GPT-3b00e8229cb8fbece85ef4c7aaadee347f63d41f.tar.bz2
Auto-GPT-3b00e8229cb8fbece85ef4c7aaadee347f63d41f.zip
Fix ImportError for validate_yaml_file function (#7110)
* Fix ImportError for validate_yaml_file function * Fix ImportError for validate_yaml_file function --------- Co-authored-by: suyun <sylearn@foxmail.com> Co-authored-by: Nicholas Tindle <nicholas.tindle@agpt.co>
Diffstat (limited to 'autogpts')
-rw-r--r--autogpts/autogpt/autogpt/app/configurator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogpts/autogpt/autogpt/app/configurator.py b/autogpts/autogpt/autogpt/app/configurator.py
index 06f976c83..085d5dbf1 100644
--- a/autogpts/autogpt/autogpt/app/configurator.py
+++ b/autogpts/autogpt/autogpt/app/configurator.py
@@ -8,12 +8,12 @@ from typing import Literal, Optional
import click
from colorama import Back, Fore, Style
-from autogpt import utils
from autogpt.config import Config
from autogpt.config.config import GPT_3_MODEL, GPT_4_MODEL
from autogpt.core.resource.model_providers.openai import OpenAIModelName, OpenAIProvider
from autogpt.logs.helpers import request_user_double_check
from autogpt.memory.vector import get_supported_memory_backends
+from autogpt.utils import utils
logger = logging.getLogger(__name__)