Scaffolded from the Ladill mini/events extraction pattern: multi-file transfers, retention controls, public landing pages, analytics, and Gitea deploy workflow. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
342 B
PHP
11 lines
342 B
PHP
<?php
|
|
|
|
return [
|
|
// Afia — in-app AI assistant scoped to Ladill Transfer.
|
|
'product' => env('AFIA_PRODUCT', 'transfer'),
|
|
'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'),
|
|
];
|