$baseUrl, 'responses_path' => $responsesPath, 'project_id' => $projectId, 'project_uuid' => $projectUuid, 'project_header' => 'project-uuid', 'default_model' => 'gpt-5-mini', 'timeout' => 30, 'verify_tls' => true, // Additional settings for Appwizzy compatibility 'debug' => getenv('APP_ENV') === 'development' || getenv('APP_DEBUG') === 'true', 'max_retries' => 3, 'retry_delay' => 2, // Feature flags 'features' => [ 'async_polling' => true, 'json_response' => true, 'streaming' => false, ], // Cache settings 'cache' => [ 'enabled' => getenv('AI_CACHE_ENABLED') === 'true', 'ttl' => 3600, // 1 hour 'path' => __DIR__ . '/../cache/ai-responses', ], ];