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>
11 lines
368 B
PHP
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')),
|
|
];
|