feat: api to trigger offloading the models (#188)

Signed-off-by: Michele Dolfi <dol@zurich.ibm.com>
This commit is contained in:
Michele Dolfi
2025-05-14 15:02:18 +02:00
committed by GitHub
parent 3ff1b2f983
commit 00be428490
2 changed files with 15 additions and 0 deletions

View File

@@ -15,6 +15,10 @@ class HealthCheckResponse(BaseModel):
status: str = "ok"
class ClearResponse(BaseModel):
status: str = "ok"
class DocumentResponse(BaseModel):
filename: str
md_content: Optional[str] = None