11 lines
354 B
PHP
11 lines
354 B
PHP
<?php
|
|
|
|
namespace App\Services\AIPrompt;
|
|
|
|
interface IAIPrompt
|
|
{
|
|
public function generate(string $model, string $prompt, array $images = [], string $outputFormat = "json", string $systemMessage = null, bool $keepAlive = true, bool $shouldThink = false): string;
|
|
|
|
//public function chat(string $model, string $prompt, array $images = []): string;
|
|
}
|