fix: Dont send a human message on interrupt resume

This commit is contained in:
bracesproul
2025-03-17 14:12:27 -07:00
parent 3a81094853
commit cd392d22d8

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.",
},
],
},
}, },
}, },
); );