Fix
All checks were successful
Push image to registry / build-image (push) Successful in 6m51s

This commit is contained in:
2025-06-30 16:33:07 +02:00
parent 77fcee7a83
commit 9d0a1b5cf9

View File

@ -9,10 +9,11 @@ use Uri;
*/
class OpenAPIPrompt implements IAIPrompt
{
private string $host;
private ?string $host;
private ?string $token = null;
public function __construct(?string $host = null) {
//dd($host ?? config('llm.api.host'));
$this->host = $host ?? config('llm.api.host');
if (config('llm.api.token')) {
$this->token = config('llm.api.token');