10 lines
206 B
Python
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'}")
|