AttrLLM / visualization /__init__.py
Qingpeng Kong
clean initial state
3e72399
raw
history blame contribute delete
440 Bytes
"""
AttrLLM visualization package.
This module exposes convenience entrypoints for building or launching the
Gradio interfaces defined in `visualization.app`.
"""
from .app import (
build_app,
build_demo_app,
launch_app,
launch_demo,
on_select_example,
on_click_compute,
)
__all__ = [
"build_app",
"build_demo_app",
"launch_app",
"launch_demo",
"on_select_example",
"on_click_compute",
]