From 37d780535bddbb547a42a12b6738fde6a152d478 Mon Sep 17 00:00:00 2001 From: Alfred Nutile Date: Thu, 1 Aug 2024 16:45:03 -0400 Subject: [PATCH] lame bug, not sure why stan did not see it --- app/Jobs/GatherInfoFinalPromptJob.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Jobs/GatherInfoFinalPromptJob.php b/app/Jobs/GatherInfoFinalPromptJob.php index d41663ba..6a063c2e 100644 --- a/app/Jobs/GatherInfoFinalPromptJob.php +++ b/app/Jobs/GatherInfoFinalPromptJob.php @@ -51,8 +51,8 @@ public function handle(): void } $messages[] = MessageInDto::from([ - 'content' => sprintf('Using the context of this chat can you '. - $this->report->message->getPrompt()), + 'content' => 'Using the context of this chat can you '. + $this->report->message->getPrompt(), 'role' => 'user', ]);