Lean control center at mini.ladill.com: payment QR CRUD, Paystack checkout with 5% fee settlement via Billing API, payments feed, and payouts. QR codes use a fixed black-and-white preset only. 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 Mini.
|
|
'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'),
|
|
];
|