mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-19 08:42:08 +03:00
10 lines
174 B
Python
10 lines
174 B
Python
|
from typing import Optional
|
||
|
from uuid import UUID
|
||
|
|
||
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class UserIdentity(BaseModel):
|
||
|
user_id: UUID
|
||
|
openai_api_key: Optional[str] = None
|