13 lines
270 B
PHP
13 lines
270 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace App\Infrastructure\AI;
|
||
|
|
|
||
|
|
interface OllamaClientInterface
|
||
|
|
{
|
||
|
|
public function generate(string $model, string $prompt): string;
|
||
|
|
|
||
|
|
public function generateWithImage(string $model, string $prompt, string $imagePath): string;
|
||
|
|
}
|