UNPKG

@xiaolaa2/ableton-copilot-mcp

Version:
14 lines 435 B
import { Ableton } from 'ableton-js'; import { setupRecordModeListener } from './utils/record-utils.js'; export let ableton; export async function initAbleton(logger) { ableton = new Ableton({ logger, heartbeatInterval: 5000, commandTimeoutMs: 5000, }); // Establishes a connection with Live await ableton.start(); setupRecordModeListener(ableton.song); } //# sourceMappingURL=ableton.js.map