17 lines
357 B
PHP
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,
|
|
];
|
|
}
|