Files
wehub-resource-sync a203934033
Lint test / lint (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:34:58 +08:00

19 lines
710 B
Python

# Copyright (c) ModelScope Contributors. All rights reserved.
from dataclasses import dataclass
@dataclass
class WebUIArguments:
"""A dataclass for web UI configuration arguments.
Args:
server_name (str): The hostname or IP address to be bound to the Web UI server. Defaults to '0.0.0.0'.
server_port (int): The port number to be bound to the Web UI server. Defaults to 7860.
share (bool): Whether to create a public, shareable link for the web UI. Defaults to False.
lang (str): The language for the web UI, chosen from {'zh', 'en'}. Defaults to 'zh'.
"""
server_name: str = '0.0.0.0'
server_port: int = 7860
share: bool = False
lang: str = 'zh'