[refactor] Init

This commit is contained in:
OleehyO
2025-04-16 14:23:02 +00:00
parent 0e32f3f3bf
commit 06edd104e2
101 changed files with 1854 additions and 2758 deletions

25
texteller/cli/__init__.py Normal file
View File

@@ -0,0 +1,25 @@
"""
CLI entry point for TexTeller.
"""
import time
import click
from texteller.cli.commands.inference import inference
from texteller.cli.commands.launch import launch
from texteller.cli.commands.web import web
@click.group()
def cli():
pass
cli.add_command(inference)
cli.add_command(web)
cli.add_command(launch)
if __name__ == "__main__":
cli()