mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-25 21:36:52 +08:00
Co-authored-by: openhands <openhands@all-hands.dev> Co-authored-by: sp.wack <83104063+amanape@users.noreply.github.com> Co-authored-by: Engel Nyst <enyst@users.noreply.github.com>
14 lines
344 B
Python
14 lines
344 B
Python
from openhands.integrations.provider import PROVIDER_TOKEN_TYPE
|
|
from openhands.storage.data_models.settings import Settings
|
|
|
|
|
|
class UserInfo(Settings):
|
|
"""Model for user settings including the current user id."""
|
|
|
|
id: str | None = None
|
|
|
|
|
|
class ProviderTokenPage:
|
|
items: list[PROVIDER_TOKEN_TYPE]
|
|
next_page_id: str | None = None
|