Skip to content

Commit

Permalink
fix(base_email_tool): set default limit to -1
Browse files Browse the repository at this point in the history
  • Loading branch information
idiotWu committed Feb 5, 2025
1 parent faae7ac commit f249833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion npiai/tools/shared_types/base_email_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class BaseEmailTool(FunctionTool):
@abstractmethod
def list_inbox_stream(
self,
limit: int = 10,
limit: int = -1,
query: str = None,
) -> AsyncGenerator[EmailMessage, None]:
pass
Expand Down

0 comments on commit f249833

Please sign in to comment.