Files
isaaccladandCursor 5a3631cd2e
Deploy Ladill Link / deploy (push) Successful in 31s
Fix Afia AI assistant for Ladill Link.
Wire the chat route and Link-scoped system prompt, include the Afia panel in the main layout, and point the UI at link.afia.chat instead of the copied QR Plus route.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-27 14:31:00 +00:00

11 lines
334 B
PHP

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