mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-19 20:31:50 +03:00
11 lines
171 B
Python
11 lines
171 B
Python
|
from uuid import UUID
|
||
|
|
||
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class IngestionEntity(BaseModel):
|
||
|
id: UUID
|
||
|
name: str
|
||
|
brain_id_required: bool
|
||
|
file_1_required: bool
|