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

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


[docs] @executor.wrap("sync") class _NearText(_NearTextExecutor[ConnectionSync]): pass