2026-05-17 22:43:47 +00:00
|
|
|
<?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;
|
2026-05-18 07:28:21 +00:00
|
|
|
|
|
|
|
|
/** Generates with web search if the backend supports it, falls back to generate(). */
|
|
|
|
|
public function generateWithWebSearch(string $model, string $prompt): string;
|
2026-05-17 22:43:47 +00:00
|
|
|
}
|