chore: import upstream snapshot with attribution
Lint test / lint (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 13:34:58 +08:00
commit a203934033
1368 changed files with 175001 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# 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'