forked from innovacion/searchbox
Add testing
This commit is contained in:
9
src/vector_search_mcp/models.py
Normal file
9
src/vector_search_mcp/models.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from typing import Any
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class SearchRow(BaseModel):
|
||||
chunk_id: str
|
||||
score: float
|
||||
payload: dict[str, Any]
|
||||
Reference in New Issue
Block a user