Wire Afia into Frontdesk and sync the app launcher catalog.
Deploy Ladill Frontdesk / deploy (push) Successful in 34s

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>
This commit is contained in:
isaacclad
2026-06-28 01:40:32 +00:00
co-authored by Cursor
parent 8c79c312cf
commit 5a42759886
9 changed files with 296 additions and 7 deletions
+10
View File
@@ -0,0 +1,10 @@
<?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')),
];