community[patch]: Release 0.2.11 (#24989)

This commit is contained in:
Bagatur
2024-08-02 13:08:44 -07:00
committed by GitHub
parent c2538e7834
commit 8e2316b8c2
12 changed files with 540 additions and 561 deletions

View File

@@ -25,7 +25,7 @@ class ConneryAction(BaseTool):
def _run(
self,
run_manager: Optional[CallbackManagerForToolRun] = None,
**kwargs: Dict[str, str],
**kwargs: Any,
) -> Dict[str, str]:
"""
Runs the Connery Action with the provided input.
@@ -40,7 +40,7 @@ class ConneryAction(BaseTool):
async def _arun(
self,
run_manager: Optional[AsyncCallbackManagerForToolRun] = None,
**kwargs: Dict[str, str],
**kwargs: Any,
) -> Dict[str, str]:
"""
Runs the Connery Action asynchronously with the provided input.