- Introduced `uploadRoute` to handle image uploads with MIME type validation and size restrictions. - Added `upload_store` class for managing file storage and generating presigned URLs for upload/download. - Enhanced file server to differentiate between PDFs and uploaded files, supporting dynamic content delivery. - Integrated OpenAI module for License Plate Recognition (LPR), including API configuration and schema validation. - Updated core structure with new interfaces (`minio_uploads_i`, `openai_i`) and classes (`openai`, `upload_store`). - Adjusted `index.php` and file routes to support dynamic MIME checks and direct link generation.
29 lines
474 B
PHP
29 lines
474 B
PHP
<?php
|
|
|
|
namespace openAI\config;
|
|
|
|
use Exception;
|
|
use traits\module_config_variable;
|
|
|
|
class openAI_enabled_c
|
|
{
|
|
use module_config_variable;
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function __construct()
|
|
{
|
|
self::setupConfigVariable(
|
|
'openAI',
|
|
'enabled',
|
|
'bool',
|
|
true,
|
|
null,
|
|
'Whether openAI is enabled',
|
|
'1',
|
|
false,
|
|
'false'
|
|
);
|
|
}
|
|
} |