canter / app.py
data-archetype's picture
Publish Canter v0001
47cf0df verified
Raw
History Blame Contribute Delete
198 Bytes
"""Launch the bundled Canter Gradio application."""
from pathlib import Path
from canter.webui import main
if __name__ == "__main__":
main(default_model=str(Path(__file__).resolve().parent))