mirror of
https://github.com/usestrix/strix.git
synced 2026-08-17 01:29:42 +02:00
39 lines
811 B
Python
39 lines
811 B
Python
"""Launch the interactive terminal interface."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
from typing import TYPE_CHECKING
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
import argparse
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class InteractiveSetupUnavailableError(RuntimeError):
|
|
"""Raised when the interactive TUI cannot be launched."""
|
|
|
|
|
|
async def run_tui(args: argparse.Namespace) -> None:
|
|
"""Run the Bubble Tea TUI."""
|
|
from strix.interface.tui.runtime import (
|
|
GoTuiPreActivationError,
|
|
run_go_tui,
|
|
)
|
|
|
|
try:
|
|
await run_go_tui(args)
|
|
except GoTuiPreActivationError as exc:
|
|
raise InteractiveSetupUnavailableError(
|
|
f"The interactive interface could not start: {exc}"
|
|
) from exc
|
|
|
|
|
|
__all__ = [
|
|
"InteractiveSetupUnavailableError",
|
|
"run_tui",
|
|
]
|