mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-19 00:22:14 +03:00
9 lines
148 B
Python
9 lines
148 B
Python
|
from uuid import UUID
|
||
|
|
||
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class DeleteKnowledgeResponse(BaseModel):
|
||
|
status: str = "delete"
|
||
|
knowledge_id: UUID
|