Add Backend enum

This commit is contained in:
2025-09-26 15:13:22 +00:00
parent 0656ed93f1
commit a91188e83f
4 changed files with 13 additions and 11 deletions

View File

@@ -4,7 +4,7 @@ from typing import final, override
from qdrant_client import AsyncQdrantClient, models
from ..config import Settings
from ..models import SearchRow, Condition, Match, MatchAny, MatchExclude
from ..models import Condition, Match, MatchAny, MatchExclude, SearchRow
from .base_engine import BaseEngine
__all__ = ["QdrantEngine"]