Files
TexTeller/texteller/cli/commands/web/__init__.py
2025-04-19 14:32:28 +00:00

10 lines
206 B
Python

import os
import click
from pathlib import Path
@click.command()
def web():
"""Launch the web interface for TexTeller."""
os.system(f"streamlit run {Path(__file__).parent / 'streamlit_demo.py'}")