Source code for weaviate.collections.queries.near_vector.query.async_

from typing import Generic

from weaviate.connect import executor
from weaviate.collections.classes.types import Properties, References
from weaviate.collections.queries.near_vector.query.executor import _NearVectorQueryExecutor
from weaviate.connect.v4 import ConnectionAsync


[docs] @executor.wrap("async") class _NearVectorQueryAsync( Generic[Properties, References], _NearVectorQueryExecutor[ConnectionAsync, Properties, References], ): pass