Deploy Ladill Queue / deploy (push) Successful in 38s
Point layout partials at qms routes and add wallet/afia endpoints so shared shell renders on queue.ladill.com. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
471 B
PHP
12 lines
471 B
PHP
<?php
|
|
|
|
return [
|
|
'product' => env('AFIA_PRODUCT', 'queue'),
|
|
'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_QUEUE')),
|
|
];
|