mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-20 21:01:36 +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
|