mirror of
https://github.com/qdrant/qdrant-client.git
synced 2026-07-26 04:31:03 -05:00
5 lines
196 B
Python
5 lines
196 B
Python
from qdrant_client.http import models
|
|
|
|
INFERENCE_OBJECT_NAMES: set[str] = {"Document", "Image", "InferenceObject"}
|
|
INFERENCE_OBJECT_TYPES = models.Document | models.Image | models.InferenceObject
|