From d86f76c019c33323d325a3fc291743ae58c2bb70 Mon Sep 17 00:00:00 2001 From: Alfred Nutile Date: Wed, 24 Jul 2024 21:05:47 -0400 Subject: [PATCH] darn the claude issue with user sandwhich --- app/Jobs/GatherInfoFinalPromptJob.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/Jobs/GatherInfoFinalPromptJob.php b/app/Jobs/GatherInfoFinalPromptJob.php index d6e17b62..0446dbc7 100644 --- a/app/Jobs/GatherInfoFinalPromptJob.php +++ b/app/Jobs/GatherInfoFinalPromptJob.php @@ -41,12 +41,6 @@ public function handle(): void $messages = []; $history = []; - - $messages[] = MessageInDto::from([ - 'content' => 'You are an assistant helping with this gathered info.', - 'role' => 'system', - ]); - foreach ($this->report->sections as $section) { $messages[] = MessageInDto::from([ 'content' => $section->content,