is_async_callable#

langchain_core.runnables.utils.is_async_callable(func: Any) TypeGuard[Callable[[...], Awaitable]][源代码]#

检查一个函数是否是异步的。

Parameters:

func (Any) – 要检查的函数。

Returns:

如果函数是异步的,则为True,

否则为False。

Return type:

TypeGuard[Callable[…, Awaitable]