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