fix group chat agent mentions (#1111)

This commit is contained in:
ekko
2026-05-29 09:02:38 +08:00
committed by GitHub
parent 1373b4746b
commit 717f577380
4 changed files with 57 additions and 9 deletions
@@ -72,6 +72,12 @@ export function groupContextTokensWithFixedOverhead(
return Math.floor(fixedContextTokens) + estimateGroupHistoryMessageTokens(history)
}
export function groupBridgeReasoningDeltaFromEvent(event: Record<string, unknown>): string | null {
if (String(event.event || '') !== 'reasoning.delta') return null
const text = String(event.text || '')
return text ? text : null
}
interface MemberData {
id: string
name: string
@@ -698,10 +704,12 @@ class AgentClient {
approval_id: (ev as any).approval_id,
choice: (ev as any).choice,
})
} else if (eventType === 'reasoning.delta' || eventType === 'thinking.delta') {
const text = String((ev as any)?.text || '')
reasoning += text
this.emitMessageReasoningDelta(roomId, getCurrentMessageId(), text)
} else {
const text = groupBridgeReasoningDeltaFromEvent(ev as Record<string, unknown>)
if (text) {
reasoning += text
this.emitMessageReasoningDelta(roomId, getCurrentMessageId(), text)
}
}
}
return reasoning
@@ -142,6 +142,12 @@ function normalizeMentionDepth(depth: unknown): number {
return Number.isFinite(value) && value > 0 ? Math.floor(value) : 0
}
function maxAgentMentionDepth(): number {
const value = Number(process.env.HERMES_GROUP_CHAT_MAX_AGENT_MENTION_DEPTH)
if (!Number.isFinite(value) || value <= 0) return 4
return Math.min(10, Math.floor(value))
}
function groupRunOrder(id: string): { baseId: string; phase: number } {
const value = String(id || '')
const partMatch = value.match(/^(.*)_part_(\d+)(?:_(toolcall|toolresult)_.+)?$/)
@@ -965,10 +971,14 @@ export class GroupChatServer {
ack?.({ id: savedMsg.id })
const mentionDepth = normalizeMentionDepth(data.mentionDepth)
const shouldRouteMentions = savedMsg.role === 'user'
const isAgentReply = savedMsg.role === 'assistant' && member?.source === 'agent'
const shouldRouteMentions = savedMsg.role === 'user' ||
(isAgentReply && mentionDepth < maxAgentMentionDepth())
if (shouldRouteMentions) {
// Server-side @mention routing — parse user mentions and invoke agents directly.
// Server-side @mention routing — parse mentions and invoke agents directly.
// Agent replies are allowed to mention other agents, but mentionDepth
// bounds chained agent-to-agent handoffs so one prompt cannot loop forever.
this.agentClients.processMentions(roomId, {
content: contentToText(savedMsg.content),
input: Array.isArray(data.content) ? data.content : undefined,