관리-도구
편집 파일: AIProviderInterface.php
<?php namespace Modules\AI\app\Contracts; interface AIProviderInterface { public function generate(string $prompt, ?string $imageUrl = null, array $options = []): string; public function getName(): string; }