Files
kupshop/bundles/KupShop/LLMBundle/TextObjects/InfoPanelArea.php
2025-08-02 16:30:27 +02:00

17 lines
357 B
PHP

<?php
namespace KupShop\LLMBundle\TextObjects;
use KupShop\LLMBundle\Enum\SystemPromptExtension;
class InfoPanelArea extends AbstractTextObject
{
public const LABEL = 'info_panel';
protected const DESCRIPTION = 'Informační panel';
protected array $SYSTEM_PROMPT_EXTENSIONS = [
SystemPromptExtension::CKEDITOR_FORMATTING,
];
}