Files
ableton-mcp-ai/test_reggaeton.py

14 lines
377 B
Python

import sys
import logging
logging.basicConfig(level=logging.DEBUG)
from AbletonMCP_AI.AbletonMCP_AI.MCP_Server.song_generator import SongGenerator
try:
sg = SongGenerator()
config = sg.generate_config(genre="reggaeton", style="perreo", bpm=95, key="Am", structure="standard")
print("SUCCESS")
except Exception as e:
import traceback
traceback.print_exc()