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

17 lines
358 B
PHP

<?php
namespace KupShop\LLMBundle\TextObjects;
use KupShop\LLMBundle\Enum\SystemPromptExtension;
class EmailTextArea extends AbstractTextObject
{
public const LABEL = 'email_text';
protected const DESCRIPTION = 'Obsah emailu / Text';
protected array $SYSTEM_PROMPT_EXTENSIONS = [
SystemPromptExtension::CKEDITOR_FORMATTING,
];
}