- Updated API endpoints from sound-generation to music endpoints - Added simple prompt music generation mode - Added advanced mode with composition plan generation - Disabled SSO login for local testing - Updated UI to reflect music generation instead of sound effects - Created separate endpoint for composition plan generation - Updated webhook tracking for music generation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
No EOL
357 B
PHP
10 lines
No EOL
357 B
PHP
<?php
|
|
// Configuration file for ElevenLabs Music Generator
|
|
// IMPORTANT: Replace the API key below with your new ElevenLabs Music API key
|
|
|
|
return [
|
|
'elevenlabs_api_key' => 'sk_1295b1e2ed87f7cb811484c29cf295dcd80990020d658e02',
|
|
'max_file_age_hours' => 24, // Auto-delete generated files older than this
|
|
'generated_files_dir' => 'generated/'
|
|
];
|
|
?>
|