Files
llm-in-text/backend/models.py
T

10 lines
214 B
Python
Raw Normal View History

"""共享的 Pydantic 模型定义"""
from pydantic import BaseModel
class UserPreferences(BaseModel):
"""用户偏好设置"""
language: str = "auto"
country: str = "auto"
timezone: str = "auto"