Files
ladill-meet/config/afia.php
T
isaaccladandCursor a9d3a8bd64
Deploy Ladill Meet / deploy (push) Successful in 47s
Sync email team invites, meeting room fixes, Afia, and org settings.
Publish monorepo meet changes: identity API invites, join/room session fixes,
Afia assistant panel, settings nav, and SSO team provisioning.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-01 06:45:35 +00:00

12 lines
469 B
PHP

<?php
return [
'product' => env('AFIA_PRODUCT', 'meet'),
'enabled' => (bool) env('AFIA_ENABLED', true),
'provider' => env('AFIA_PROVIDER', 'openai'),
'model' => env('AFIA_MODEL', 'gpt-4o-mini'),
'api_key' => env('AFIA_API_KEY', env('OPENAI_API_KEY')),
'platform_api_url' => env('AFIA_PLATFORM_API_URL', env('IDENTITY_API_URL', 'https://ladill.com/api')),
'platform_api_key' => env('AFIA_PLATFORM_API_KEY', env('IDENTITY_API_KEY_MEET')),
];