chore: publish current ableton mcp ai workspace

This commit is contained in:
renato97
2026-03-30 02:35:02 -03:00
commit d0a4444135
101 changed files with 56545 additions and 0 deletions

21
_Framework/Component.py Normal file
View File

@@ -0,0 +1,21 @@
from __future__ import absolute_import, print_function, unicode_literals
import Live
class Component(object):
"""Minimal compatibility layer for handlers importing `_Framework.Component`."""
def __init__(self, *args, **kwargs):
pass
@property
def song(self):
return Live.Application.get_application().get_document()
@property
def application(self):
return Live.Application.get_application()
def disconnect(self):
return None