Donation checkout via Ladill Pay (9% fee), church/giving QR pages, SSO, and platform scan forwarding. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
334 B
PHP
11 lines
334 B
PHP
<?php
|
|
|
|
return [
|
|
// Afia — in-app AI assistant scoped to Ladill Give.
|
|
'product' => env('AFIA_PRODUCT', 'mini'),
|
|
'enabled' => (bool) env('AFIA_ENABLED', true),
|
|
'provider' => env('AFIA_PROVIDER', 'openai'), // openai | anthropic
|
|
'model' => env('AFIA_MODEL', 'gpt-4o-mini'),
|
|
'api_key' => env('AFIA_API_KEY'),
|
|
];
|