aboutsummaryrefslogtreecommitdiff
path: root/autogpts/autogpt/autogpt/agents/protocols.py
diff options
context:
space:
mode:
Diffstat (limited to 'autogpts/autogpt/autogpt/agents/protocols.py')
-rw-r--r--autogpts/autogpt/autogpt/agents/protocols.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/autogpts/autogpt/autogpt/agents/protocols.py b/autogpts/autogpt/autogpt/agents/protocols.py
index 07984ba08..22fab67f9 100644
--- a/autogpts/autogpt/autogpt/agents/protocols.py
+++ b/autogpts/autogpt/autogpt/agents/protocols.py
@@ -4,7 +4,7 @@ from typing import TYPE_CHECKING, Iterator
from autogpt.agents.components import AgentComponent
if TYPE_CHECKING:
- from autogpt.agents.base import ThoughtProcessOutput
+ from autogpt.agents.base import BaseAgentActionProposal
from autogpt.core.resource.model_providers.schema import ChatMessage
from autogpt.models.action_history import ActionResult
from autogpt.models.command import Command
@@ -35,7 +35,7 @@ class MessageProvider(AgentComponent):
class AfterParse(AgentComponent):
@abstractmethod
- def after_parse(self, result: "ThoughtProcessOutput") -> None:
+ def after_parse(self, result: "BaseAgentActionProposal") -> None:
...