mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-17 03:19:59 +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
|