19 lines
463 B
Python
19 lines
463 B
Python
# Copyright (c) 2025 ByteDance Ltd. and/or its affiliates
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
"""CLI console module for Trae Agent."""
|
|
|
|
from .cli_console import CLIConsole, ConsoleMode, ConsoleType
|
|
from .console_factory import ConsoleFactory
|
|
from .rich_console import RichCLIConsole
|
|
from .simple_console import SimpleCLIConsole
|
|
|
|
__all__ = [
|
|
"CLIConsole",
|
|
"ConsoleMode",
|
|
"ConsoleType",
|
|
"SimpleCLIConsole",
|
|
"RichCLIConsole",
|
|
"ConsoleFactory",
|
|
]
|