Files
ladill-hosting/config/afia.php
T
isaaccladandCursor 5703a00862
Deploy Ladill Hosting / deploy (push) Successful in 24s
Show linked domains on cards and fix Email leftovers.
Display hosted_sites on account cards, scope Afia and Settings to hosting,
add hosting_settings for notifications, and remove mailbox UI from the
hosting layout and account pages.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-06 17:30:40 +00:00

11 lines
372 B
PHP

<?php
return [
// Afia — in-app AI assistant. Product scope is set per deployed app (hosting | email).
'product' => env('AFIA_PRODUCT', 'hosting'),
'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'),
];