unsloth/studio/backend/models/users.py
Wasim Yousef Said 629199e3a6
fix: remove old comments (#4292)
* fix: quotation marks

* diceware passphrase generation

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: Roland Tannous <rolandtannous@gravityq.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2026-03-14 16:50:13 +04:00

27 lines
925 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.
This module defines the Token response model used by auth routes.
"""
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"
)