canter / app.py
levzalt's picture
Duplicate from data-archetype/canter
66ab0dd
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))