amber-laravel/app/LLM/BaseLLM.php
2024-07-25 01:16:41 +08:00

15 lines
267 B
PHP

<?php
namespace App\LLM;
use App\Repositories\LLM\History;
use Illuminate\Database\Eloquent\Collection;
interface BaseLLM
{
public function setHistory(History $history);
public function setTools(Collection $tools);
public function streamResponse();
}