diff --git a/app/Services/Afia/AfiaService.php b/app/Services/Afia/AfiaService.php index c47ee1a..6e0ed7c 100644 --- a/app/Services/Afia/AfiaService.php +++ b/app/Services/Afia/AfiaService.php @@ -90,31 +90,28 @@ class AfiaService { $ctx = collect($context)->map(fn ($v, $k) => "- {$k}: {$v}")->implode("\n"); - return match ((string) config('afia.product', 'hosting')) { - 'email' => $this->emailSystemPrompt($ctx), - default => $this->hostingSystemPrompt($ctx), - }; + return $this->serversSystemPrompt($ctx); } - private function hostingSystemPrompt(string $ctx): string + private function serversSystemPrompt(string $ctx): string { return <<