mirror of
https://github.com/qdrant/qdrant-client.git
synced 2026-07-28 21:51:07 -05:00
* tests: Updated propagate options test * fix: Fix CI * fix: Fix ci * revert test * new: update task id propagation --------- Co-authored-by: George Panchuk <george.panchuk@qdrant.tech>
7 lines
227 B
Python
7 lines
227 B
Python
from typing import Union
|
|
|
|
from qdrant_client.http import models
|
|
|
|
INFERENCE_OBJECT_NAMES: set[str] = {"Document", "Image", "InferenceObject"}
|
|
INFERENCE_OBJECT_TYPES = Union[models.Document, models.Image, models.InferenceObject]
|