Request for deleting documents from FAISS.
| 21 | |
| 22 | |
| 23 | class FaissDeleteRequest(BaseModel): |
| 24 | """Request for deleting documents from FAISS.""" |
| 25 | ids: List[str] = Field(..., description="IDs of documents to delete") |
| 26 | |
| 27 | |
| 28 | class FaissIndexInfo(BaseModel): |
no outgoing calls