Merge pull request #74 from langchain-ai/brace/no-human-msg-resume

fix: Dont send a human message on interrupt resume
This commit is contained in:
Brace Sproul
2025-03-17 14:21:42 -07:00
committed by GitHub

View File

@@ -87,14 +87,6 @@ export default function useInterruptedActions({
{ {
command: { command: {
resume: response, resume: response,
update: {
messages: [
{
type: "human",
content: `Sending type '${response[0].type}' to interrupt...`,
},
],
},
}, },
}, },
); );
@@ -266,14 +258,6 @@ export default function useInterruptedActions({
{ {
command: { command: {
goto: END, goto: END,
update: {
messages: [
{
type: "human",
content: "Marking thread as resolved.",
},
],
},
}, },
}, },
); );