Updated LLM prompts and System message
Some checks failed
Push image to registry / build-image (push) Failing after 51s

This commit is contained in:
2025-07-02 13:20:42 +02:00
parent 6b9b5a60e9
commit f192cba1f8
4 changed files with 72 additions and 66 deletions

View File

@ -13,7 +13,7 @@ class OpenAPIPrompt implements IAIPrompt
private ?string $token = null;
public function __construct(?string $host = null) {
//dd($host ?? config('llm.api.host'));
//dd($host ?? config('llm.api.host')); // DEBUG TODO : Is null ? so thows error because $host is normally of type non null string
$this->host = $host ?? config('llm.api.host');
if (config('llm.api.token')) {
$this->token = config('llm.api.token');