HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-26-0-120 6.17.0-1009-aws #9~24.04.2-Ubuntu SMP Fri Mar 6 23:50:29 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
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'),

];