Files
qdrant-client/qdrant_client/embed/common.py
Hossam Hagag 5cd7538fd8 propagate task_id for multitask models in local inference
* 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>
2025-02-19 13:52:49 +01:00

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]