hatchimera / app.py
arkai2025's picture
feat: Build Buddy — voxel pet fusion (AI genetics engine)
357e825
Raw
History Blame Contribute Delete
247 Bytes
from pathlib import Path
import sys
sys.path.insert(0, str(Path(__file__).parent / "src"))
from buddy_fusion.fusion_ui import CSS, FUSION_HEAD, build_app
demo = build_app()
if __name__ == "__main__":
demo.launch(css=CSS, head=FUSION_HEAD)