Optimize academy

This commit is contained in:
2026-06-09 13:16:01 +02:00
parent f89ee937c0
commit 5af95f6533
109 changed files with 6862 additions and 719 deletions

12
config/theme.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
return [
// Whether the optional `light` theme is enabled for the site. When false,
// front-end theme toggle will only expose the default theme.
'enabled' => env('LIGHT_THEME_ENABLED', false),
// Whether the toolbar should render the light-theme switch. This is
// controlled separately so you can enable the theme without showing the
// global switch to visitors/admins.
'show_toolbar_switch' => env('LIGHT_THEME_SHOW_SWITCH', false),
];

View File

@@ -5,6 +5,22 @@ declare(strict_types=1);
return [
'enabled' => env('VISION_ENABLED', true),
'auto_tagging' => [
'enabled' => env('VISION_AUTO_TAGGING_ENABLED', false),
],
'upload' => [
'embeddings' => [
'enabled' => env('VISION_UPLOAD_EMBEDDINGS_ENABLED', true),
],
'maturity' => [
'enabled' => env('VISION_UPLOAD_MATURITY_ENABLED', false),
],
'ai_assist' => [
'enabled' => env('VISION_UPLOAD_AI_ASSIST_ENABLED', false),
],
],
'queue' => env('VISION_QUEUE', 'default'),
'clip' => [