mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-24 03:41:56 +03:00
11 lines
154 B
Python
11 lines
154 B
Python
|
from uuid import UUID
|
||
|
|
||
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class Prompt(BaseModel):
|
||
|
title: str
|
||
|
content: str
|
||
|
status: str = "private"
|
||
|
id: UUID
|