Files
ladill-frontdesk/config/afia.php
T
isaaccladandCursor 5a42759886
Deploy Ladill Frontdesk / deploy (push) Successful in 34s
Wire Afia into Frontdesk and sync the app launcher catalog.
Add the AI assistant button, chat endpoint, and Frontdesk-specific prompts, and include Frontdesk in the shared launcher config used by the app switcher.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-28 01:40:32 +00:00

11 lines
368 B
PHP

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