Files
ladill-qr-plus/config/afia.php
T
isaaccladandCursor 9ddda21ea3
Deploy Ladill QR Plus / deploy (push) Successful in 1m33s
Add Afia AI assistant to the QR Plus header.
Wire in-app chat scoped to QR codes, billing, and scans so users get product-specific help without leaving qrplus.ladill.com.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-07 08:56:29 +00:00

11 lines
335 B
PHP

<?php
return [
// Afia — in-app AI assistant scoped to Ladill QR Plus.
'product' => env('AFIA_PRODUCT', 'qr'),
'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'),
];