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

from weaviate.connect import executor
from weaviate.collections.aggregations.near_image.executor import _NearImageExecutor
from weaviate.connect.v4 import ConnectionAsync


[docs] @executor.wrap("async") class _NearImageAsync(_NearImageExecutor[ConnectionAsync]): pass