File size: 710 Bytes
a88f878 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # 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'
|