관리-도구
편집 파일: PromptTemplateInterface.php
<?php namespace Modules\AI\app\Contracts; interface PromptTemplateInterface { public function build(?string $context = null, ?string $langCode = null, ?string $description = null, ?array $options = null): string; public function getType(): string; }