mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2026-05-17 08:51:30 +00:00
Introduced subsystem to configure AI providers and allow services to select them dynamiclly
This commit is contained in:
parent
c0017d29a7
commit
2631ff4bee
10 changed files with 342 additions and 5 deletions
|
|
@ -1,3 +1,4 @@
|
||||||
ai:
|
ai:
|
||||||
platform:
|
platform:
|
||||||
lmstudio: null
|
lmstudio:
|
||||||
|
host_url: '%env(string:settings:ai_lmstudio:hostURL)%'
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
ai:
|
ai:
|
||||||
platform:
|
platform:
|
||||||
openrouter:
|
openrouter:
|
||||||
api_key: '%env(OPENROUTER_API_KEY)%'
|
api_key: '%env(string:settings:ai_openrouter:apiKey)%'
|
||||||
|
|
|
||||||
95
src/Services/AI/AIPlatformRegistry.php
Normal file
95
src/Services/AI/AIPlatformRegistry.php
Normal file
|
|
@ -0,0 +1,95 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019 - 2026 Jan Böhmer (https://github.com/jbtronics)
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published
|
||||||
|
* by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
|
||||||
|
namespace App\Services\AI;
|
||||||
|
|
||||||
|
use Jbtronics\SettingsBundle\Manager\SettingsManagerInterface;
|
||||||
|
use Symfony\AI\Platform\PlatformInterface;
|
||||||
|
use Symfony\Component\DependencyInjection\Attribute\AutowireIterator;
|
||||||
|
|
||||||
|
final readonly class AIPlatformRegistry
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* All registered platforms, indexed by their service tag name (e.g. "openrouter", "lmstudio")
|
||||||
|
* @var array<string, PlatformInterface> $allPlatforms
|
||||||
|
*/
|
||||||
|
private array $allPlatforms;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* All registered platforms, indexed by their AIPlatforms enum value (e.g. AIPlatforms::OPENROUTER->value)
|
||||||
|
* @var array<string, PlatformInterface> $enabledPlatforms
|
||||||
|
*/
|
||||||
|
private array $enabledPlatforms;
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
SettingsManagerInterface $settingsManager,
|
||||||
|
|
||||||
|
#[AutowireIterator(tag: 'ai.platform', indexAttribute: 'name')]
|
||||||
|
iterable $platforms,
|
||||||
|
) {
|
||||||
|
$this->allPlatforms = iterator_to_array($platforms);
|
||||||
|
|
||||||
|
//Check which platforms are active based on the settings and store them in $activePlatforms
|
||||||
|
$tmp = [];
|
||||||
|
foreach (AIPlatforms::cases() as $platform) {
|
||||||
|
if (isset($this->allPlatforms[$platform->toServiceTagName()])) {
|
||||||
|
//Check if the platform is active by calling its isActive() on the settings class
|
||||||
|
$settings = $settingsManager->get($platform->toSettingsClass());
|
||||||
|
if (!$settings->isAIPlatformEnabled()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$tmp[$platform->value] = $this->allPlatforms[$platform->toServiceTagName()];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$this->enabledPlatforms = $tmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getPlatform(AIPlatforms $platform): PlatformInterface
|
||||||
|
{
|
||||||
|
if (!isset($this->enabledPlatforms[$platform->value])) {
|
||||||
|
throw new \InvalidArgumentException(sprintf('AI platform "%s" is not active or does not exist.', $platform->name));
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->enabledPlatforms[$platform->value];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if the given platform is active (i.e. it is registered and its settings are properly configured)
|
||||||
|
* @param AIPlatforms $platform
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function isEnabled(AIPlatforms $platform): bool
|
||||||
|
{
|
||||||
|
return isset($this->enabledPlatforms[$platform->value]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns an array of all active platforms, indexed by their AIPlatforms enum value (e.g. AIPlatforms::OPENROUTER->value)
|
||||||
|
* @return PlatformInterface[]
|
||||||
|
*/
|
||||||
|
public function getEnabledPlatforms(): array
|
||||||
|
{
|
||||||
|
return $this->enabledPlatforms;
|
||||||
|
}
|
||||||
|
}
|
||||||
33
src/Services/AI/AIPlatformSettingsInterface.php
Normal file
33
src/Services/AI/AIPlatformSettingsInterface.php
Normal file
|
|
@ -0,0 +1,33 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019 - 2026 Jan Böhmer (https://github.com/jbtronics)
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published
|
||||||
|
* by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
|
||||||
|
namespace App\Services\AI;
|
||||||
|
|
||||||
|
interface AIPlatformSettingsInterface
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Returns true, if the AI platform is enabled in the settings and can be used, false otherwise.
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function isAIPlatformEnabled(): bool;
|
||||||
|
}
|
||||||
57
src/Services/AI/AIPlatforms.php
Normal file
57
src/Services/AI/AIPlatforms.php
Normal file
|
|
@ -0,0 +1,57 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019 - 2026 Jan Böhmer (https://github.com/jbtronics)
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published
|
||||||
|
* by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
|
||||||
|
namespace App\Services\AI;
|
||||||
|
|
||||||
|
use App\Settings\AISettings\LMStudioSettings;
|
||||||
|
use App\Settings\AISettings\OpenRouterSettings;
|
||||||
|
|
||||||
|
enum AIPlatforms: string
|
||||||
|
{
|
||||||
|
case OPENROUTER = 'openrouter';
|
||||||
|
case LMSTUDIO = 'lmstudio';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the name attribute of the service tag for this platform, which is used to register the platform in the AIPlatformRegistry
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function toServiceTagName(): string
|
||||||
|
{
|
||||||
|
return $this->value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the class name of the settings class for this platform, which implements AIPlatformSettingsInterface
|
||||||
|
* @return string
|
||||||
|
* @phpstan-return class-string<AIPlatformSettingsInterface>
|
||||||
|
*/
|
||||||
|
public function toSettingsClass(): string
|
||||||
|
{
|
||||||
|
return match ($this) {
|
||||||
|
self::LMSTUDIO => LMStudioSettings::class,
|
||||||
|
self::OPENROUTER => OpenRouterSettings::class,
|
||||||
|
|
||||||
|
default => throw new \InvalidArgumentException(sprintf('No settings class defined for AI platform "%s".', $this->name)),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -25,6 +25,8 @@ declare(strict_types=1);
|
||||||
namespace App\Services\InfoProviderSystem\Providers;
|
namespace App\Services\InfoProviderSystem\Providers;
|
||||||
|
|
||||||
use App\Exceptions\ProviderIDNotSupportedException;
|
use App\Exceptions\ProviderIDNotSupportedException;
|
||||||
|
use App\Services\AI\AIPlatformRegistry;
|
||||||
|
use App\Services\AI\AIPlatforms;
|
||||||
use App\Services\InfoProviderSystem\DTOJsonSchemaConverter;
|
use App\Services\InfoProviderSystem\DTOJsonSchemaConverter;
|
||||||
use App\Services\InfoProviderSystem\DTOs\PartDetailDTO;
|
use App\Services\InfoProviderSystem\DTOs\PartDetailDTO;
|
||||||
use App\Settings\InfoProviderSystem\AIExtractorSettings;
|
use App\Settings\InfoProviderSystem\AIExtractorSettings;
|
||||||
|
|
@ -45,8 +47,7 @@ final class AIInfoExtractor implements InfoProviderInterface
|
||||||
public function __construct(
|
public function __construct(
|
||||||
HttpClientInterface $httpClient,
|
HttpClientInterface $httpClient,
|
||||||
private readonly AIExtractorSettings $settings,
|
private readonly AIExtractorSettings $settings,
|
||||||
#[Autowire(service: "ai.traceable_platform.openrouter")]
|
private readonly AIPlatformRegistry $AIPlatformRegistry,
|
||||||
private readonly PlatformInterface $aiPlatform,
|
|
||||||
private readonly DTOJsonSchemaConverter $jsonSchemaConverter,
|
private readonly DTOJsonSchemaConverter $jsonSchemaConverter,
|
||||||
) {
|
) {
|
||||||
$this->httpClient = $httpClient->withOptions([
|
$this->httpClient = $httpClient->withOptions([
|
||||||
|
|
@ -171,8 +172,10 @@ final class AIInfoExtractor implements InfoProviderInterface
|
||||||
);
|
);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
$aiPlatform = $this->AIPlatformRegistry->getPlatform(AIPlatforms::OPENROUTER);
|
||||||
|
|
||||||
//'openai/gpt-5-mini'
|
//'openai/gpt-5-mini'
|
||||||
$result = $this->aiPlatform->invoke('openrouter/auto', $input, [
|
$result = $aiPlatform->invoke('openrouter/auto', $input, [
|
||||||
'response_format' => 'json_schema',
|
'response_format' => 'json_schema',
|
||||||
'json_schema' => $this->jsonSchemaConverter->getJSONSchema(),
|
'json_schema' => $this->jsonSchemaConverter->getJSONSchema(),
|
||||||
]);
|
]);
|
||||||
|
|
|
||||||
43
src/Settings/AISettings/AISettings.php
Normal file
43
src/Settings/AISettings/AISettings.php
Normal file
|
|
@ -0,0 +1,43 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019 - 2026 Jan Böhmer (https://github.com/jbtronics)
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published
|
||||||
|
* by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
|
||||||
|
namespace App\Settings\AISettings;
|
||||||
|
|
||||||
|
use App\Settings\SettingsIcon;
|
||||||
|
use Jbtronics\SettingsBundle\Settings\EmbeddedSettings;
|
||||||
|
use Jbtronics\SettingsBundle\Settings\Settings;
|
||||||
|
use Jbtronics\SettingsBundle\Settings\SettingsTrait;
|
||||||
|
use Symfony\Component\Translation\TranslatableMessage as TM;
|
||||||
|
|
||||||
|
#[Settings(label: new TM("settings.ai"), description: "settings.ai.help")]
|
||||||
|
#[SettingsIcon("fa-brain")]
|
||||||
|
class AISettings
|
||||||
|
{
|
||||||
|
use SettingsTrait;
|
||||||
|
|
||||||
|
#[EmbeddedSettings]
|
||||||
|
public ?OpenRouterSettings $openRouter = null;
|
||||||
|
|
||||||
|
#[EmbeddedSettings]
|
||||||
|
public ?LMStudioSettings $lmstudio = null;
|
||||||
|
}
|
||||||
51
src/Settings/AISettings/LMStudioSettings.php
Normal file
51
src/Settings/AISettings/LMStudioSettings.php
Normal file
|
|
@ -0,0 +1,51 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019 - 2026 Jan Böhmer (https://github.com/jbtronics)
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published
|
||||||
|
* by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
|
||||||
|
namespace App\Settings\AISettings;
|
||||||
|
|
||||||
|
use App\Form\Type\APIKeyType;
|
||||||
|
use App\Services\AI\AIPlatformSettingsInterface;
|
||||||
|
use App\Settings\SettingsIcon;
|
||||||
|
use Jbtronics\SettingsBundle\Metadata\EnvVarMode;
|
||||||
|
use Jbtronics\SettingsBundle\Settings\Settings;
|
||||||
|
use Jbtronics\SettingsBundle\Settings\SettingsParameter;
|
||||||
|
use Jbtronics\SettingsBundle\Settings\SettingsTrait;
|
||||||
|
use Symfony\Component\Form\Extension\Core\Type\UrlType;
|
||||||
|
use Symfony\Component\Translation\TranslatableMessage as TM;
|
||||||
|
|
||||||
|
#[Settings(name: 'ai_lmstudio', label: new TM("settings.ai.openrouter"), description: "settings.ai.lmstudio.help")]
|
||||||
|
#[SettingsIcon("fa-brain")]
|
||||||
|
class LMStudioSettings implements AIPlatformSettingsInterface
|
||||||
|
{
|
||||||
|
use SettingsTrait;
|
||||||
|
|
||||||
|
#[SettingsParameter(label: new TM("settings.ai.lmstudio.hosturl"),
|
||||||
|
formType: UrlType::class,
|
||||||
|
envVar: "AI_LMSTUDIO_HOSTURL", envVarMode: EnvVarMode::OVERWRITE)]
|
||||||
|
public ?string $hostURL = null;
|
||||||
|
|
||||||
|
public function isAIPlatformEnabled(): bool
|
||||||
|
{
|
||||||
|
return $this->hostURL !== null && $this->hostURL !== "";
|
||||||
|
}
|
||||||
|
}
|
||||||
50
src/Settings/AISettings/OpenRouterSettings.php
Normal file
50
src/Settings/AISettings/OpenRouterSettings.php
Normal file
|
|
@ -0,0 +1,50 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019 - 2026 Jan Böhmer (https://github.com/jbtronics)
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published
|
||||||
|
* by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
|
||||||
|
namespace App\Settings\AISettings;
|
||||||
|
|
||||||
|
use App\Form\Type\APIKeyType;
|
||||||
|
use App\Services\AI\AIPlatformSettingsInterface;
|
||||||
|
use App\Settings\SettingsIcon;
|
||||||
|
use Jbtronics\SettingsBundle\Metadata\EnvVarMode;
|
||||||
|
use Jbtronics\SettingsBundle\Settings\Settings;
|
||||||
|
use Jbtronics\SettingsBundle\Settings\SettingsParameter;
|
||||||
|
use Jbtronics\SettingsBundle\Settings\SettingsTrait;
|
||||||
|
use Symfony\Component\Translation\TranslatableMessage as TM;
|
||||||
|
|
||||||
|
#[Settings(name: 'ai_openrouter', label: new TM("settings.ai.openrouter"), description: "settings.ai.openrouter.help")]
|
||||||
|
#[SettingsIcon("fa-brain")]
|
||||||
|
class OpenRouterSettings implements AIPlatformSettingsInterface
|
||||||
|
{
|
||||||
|
use SettingsTrait;
|
||||||
|
|
||||||
|
#[SettingsParameter(label: new TM("settings.ips.element14.apiKey"),
|
||||||
|
formType: APIKeyType::class,
|
||||||
|
formOptions: ["help_html" => true], envVar: "AI_OPENROUTER_KEY", envVarMode: EnvVarMode::OVERWRITE)]
|
||||||
|
public ?string $apiKey = null;
|
||||||
|
|
||||||
|
public function isAIPlatformEnabled(): bool
|
||||||
|
{
|
||||||
|
return $this->apiKey !== null && $this->apiKey !== "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -23,6 +23,7 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace App\Settings;
|
namespace App\Settings;
|
||||||
|
|
||||||
|
use App\Settings\AISettings\AISettings;
|
||||||
use App\Settings\BehaviorSettings\BehaviorSettings;
|
use App\Settings\BehaviorSettings\BehaviorSettings;
|
||||||
use App\Settings\InfoProviderSystem\InfoProviderSettings;
|
use App\Settings\InfoProviderSystem\InfoProviderSettings;
|
||||||
use App\Settings\MiscSettings\MiscSettings;
|
use App\Settings\MiscSettings\MiscSettings;
|
||||||
|
|
@ -50,6 +51,9 @@ class AppSettings
|
||||||
#[EmbeddedSettings]
|
#[EmbeddedSettings]
|
||||||
public ?SynonymSettings $synonyms = null;
|
public ?SynonymSettings $synonyms = null;
|
||||||
|
|
||||||
|
#[EmbeddedSettings]
|
||||||
|
public ?AISettings $ai = null;
|
||||||
|
|
||||||
#[EmbeddedSettings()]
|
#[EmbeddedSettings()]
|
||||||
public ?MiscSettings $miscSettings = null;
|
public ?MiscSettings $miscSettings = null;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue