Merge pull request #584 from buster-so/dallin/bus-1472-still-running-generatesummary-on-followup-requests

initial summary and such should only go when not a slack follow up
This commit is contained in:
dal 2025-07-21 09:52:10 -06:00 committed by GitHub
commit d4b4e873fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ const postProcessingWorkflow = createWorkflow({
formatFollowUpMessageStep,
],
// Otherwise use initial message format
[async () => true, formatInitialMessageStep],
[async ({ inputData }) => inputData?.isSlackFollowUp === false, formatInitialMessageStep],
])
.commit();