unsloth/studio/backend/models/users.py
Daniel Han 8292e699e4
Studio: make code comments and docstrings more succinct (#6029)
Trim and tighten code comments and docstrings across studio/ Python. Comment-only: every changed file verified code-identical to main via AST/token comparison.
2026-06-08 23:07:28 -07:00

24 lines
857 B
Python

# SPDX-License-Identifier: AGPL-3.0-only
# Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0
"""Pydantic models for authentication tokens."""
from pydantic import BaseModel, Field
class Token(BaseModel):
"""Authentication response model for session credentials."""
access_token: str = Field(
..., description = "Session access credential used for authenticated API requests"
)
refresh_token: str = Field(
...,
description = "Session refresh credential used to renew an expired access credential",
)
token_type: str = Field(
..., description = "Credential type for the Authorization header, always 'bearer'"
)
must_change_password: bool = Field(
..., description = "True when the user must change the seeded default password"
)