File: /var/www/html/api.aianced.com/config/aianced.php
<?php
return [
/*
|--------------------------------------------------------------------------
| Admin Notification Email
|--------------------------------------------------------------------------
| This email receives a notification every time a new lead submits
| the blueprint form on aianced.com.
*/
'admin_email' => env('AIANCED_ADMIN_EMAIL', '[email protected]'),
/*
|--------------------------------------------------------------------------
| AI Provider (Phase 2)
|--------------------------------------------------------------------------
| Switch between 'simulation', 'openai', or 'claude' when ready.
*/
'ai_provider' => env('AIANCED_AI_PROVIDER', 'simulation'),
'openai_key' => env('OPENAI_API_KEY'),
'openai_model' => env('OPENAI_MODEL', 'gpt-4o'),
'claude_key' => env('CLAUDE_API_KEY'),
'claude_model' => env('CLAUDE_MODEL', 'claude-opus-4-6'),
/*
|--------------------------------------------------------------------------
| Make.com Webhook
|--------------------------------------------------------------------------
| Triggered on every new lead submission. If blank, webhook is skipped.
*/
'make_webhook_url' => env('MAKE_WEBHOOK_URL'),
'make_api_key' => env('MAKE_API_KEY'),
];