quivr/backend/modules/knowledge/dto/outputs.py
Zineb El Bachiri 9766befb53
refactor: knowledge module (#1743)
# Description

- Refactor knowledge to a module

- This PR breaks the Github Processor function -> need to comment brain
and file imports as it creates a circular dependency issue. Should be
fixed and reverted in next PR.
2023-11-29 09:04:03 +01:00

9 lines
148 B
Python

from uuid import UUID
from pydantic import BaseModel
class DeleteKnowledgeResponse(BaseModel):
status: str = "delete"
knowledge_id: UUID