Fix ?
Some checks failed
Push image to registry / build-image (push) Failing after 42s

This commit is contained in:
2025-06-30 16:29:41 +02:00
parent 1f7f4c665d
commit 77fcee7a83

View File

@ -12,7 +12,7 @@ class OpenAPIPrompt implements IAIPrompt
private string $host;
private ?string $token = null;
public function __construct(string $host = null) {
public function __construct(?string $host = null) {
$this->host = $host ?? config('llm.api.host');
if (config('llm.api.token')) {
$this->token = config('llm.api.token');