tweak: ensure that compaction message is tracked as agent initiated (#17431)
This commit is contained in:
@@ -309,6 +309,24 @@ export async function CopilotAuthPlugin(input: PluginInput): Promise<Hooks> {
|
|||||||
output.headers["anthropic-beta"] = "interleaved-thinking-2025-05-14"
|
output.headers["anthropic-beta"] = "interleaved-thinking-2025-05-14"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const parts = await sdk.session
|
||||||
|
.message({
|
||||||
|
path: {
|
||||||
|
id: incoming.message.sessionID,
|
||||||
|
messageID: incoming.message.id,
|
||||||
|
},
|
||||||
|
query: {
|
||||||
|
directory: input.directory,
|
||||||
|
},
|
||||||
|
throwOnError: true,
|
||||||
|
})
|
||||||
|
.catch(() => undefined)
|
||||||
|
|
||||||
|
if (parts?.data.parts?.some((part) => part.type === "compaction")) {
|
||||||
|
output.headers["x-initiator"] = "agent"
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
const session = await sdk.session
|
const session = await sdk.session
|
||||||
.get({
|
.get({
|
||||||
path: {
|
path: {
|
||||||
|
|||||||
Reference in New Issue
Block a user