Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

post planning should receive and return a dict #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/auto_gpt_plugin_template/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ def can_handle_post_planning(self) -> bool:
return False

@abc.abstractmethod
def post_planning(self, response: str) -> str:
def post_planning(self, response: Dict[Any, Any]) -> Dict[Any, Any]:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dict[Any, Any] is equivalent to Dict, but it can be made more specific:

Suggested change
def post_planning(self, response: Dict[Any, Any]) -> Dict[Any, Any]:
def post_planning(self, response: Dict[str, Any]) -> Dict[str, Any]:

Same for the other 2 instances.

"""This method is called after the planning chat completion is done.

Args:
response (str): The response.
response (Dict[Any, Any]): The response.

Returns:
str: The resulting response.
Dict[Any, Any]: The resulting response.
"""
pass

Expand Down