# is_async_callable

> **Function** in `langchain_core`

📖 [View in docs](https://reference.langchain.com/python/langchain-core/runnables/utils/is_async_callable)

Check if a function is async.

## Signature

```python
is_async_callable(
    func: Any,
) -> TypeGuard[Callable[..., Awaitable]]
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `func` | `Any` | Yes | The function to check. |

## Returns

`TypeGuard[Callable[..., Awaitable]]`

`True` if the function is async, `False` otherwise.

---

[View source on GitHub](https://github.com/langchain-ai/langchain/blob/b302691ff9ad841804e93e5addbdc53b6974473b/libs/core/langchain_core/runnables/utils.py#L765)