This commit is contained in:
2025-03-20 21:26:04 -03:00
parent 85cbc9269c
commit 1f19380f5c
20 changed files with 293 additions and 54 deletions

View File

@@ -2,9 +2,9 @@ from pydantic import BaseModel
class SearchResponse(BaseModel):
total_hits: int
total_items: int
total_pages: int
hits: list[dict]
items: list[dict]
class RecordResponse(BaseModel):