amber-laravel/app/LLM/BaseLLM.php

15 lines
267 B
PHP
Raw Normal View History

2024-07-24 17:16:41 +00:00
<?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();
}