lint(agent): Remove unused import in autogpt/agents/base.py

pull/7014/head
Reinier van der Leer 2024-03-13 20:56:15 +01:00
parent da4f013a5d
commit fb97e15e4b
No known key found for this signature in database
GPG Key ID: CDC1180FDAE06193
1 changed files with 1 additions and 5 deletions

View File

@ -40,11 +40,7 @@ from autogpt.core.resource.model_providers.openai import (
from autogpt.core.runner.client_lib.logging.helpers import dump_prompt
from autogpt.file_storage.base import FileStorage
from autogpt.llm.providers.openai import get_openai_command_specs
from autogpt.models.action_history import (
ActionResult,
ActionSuccessResult,
EpisodicActionHistory,
)
from autogpt.models.action_history import ActionResult, EpisodicActionHistory
from autogpt.prompts.prompt import DEFAULT_TRIGGERING_PROMPT
logger = logging.getLogger(__name__)