Source code for weaviate.collections.aggregations.hybrid.async_

from weaviate.connect import executor
from weaviate.collections.aggregations.hybrid.executor import _HybridExecutor
from weaviate.connect.v4 import ConnectionAsync


[docs] @executor.wrap("async") class _HybridAsync(_HybridExecutor[ConnectionAsync]): pass