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

from weaviate.collections.aggregations.near_text.executor import _NearTextExecutor
from weaviate.connect import executor
from weaviate.connect.v4 import ConnectionAsync


[docs] @executor.wrap("async") class _NearTextAsync(_NearTextExecutor[ConnectionAsync]): pass