mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-13 08:15:21 +02:00
* feat: add model config v2 * chore: centralize user org selection * chore: move preferences to platform settings * fix: decouple org preference and ai model preferences
6 lines
148 B
Python
6 lines
148 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class OrganizationPreferences(BaseModel):
|
|
test_phone_number: str | None = None
|
|
timezone: str | None = None
|