fix: agent session round count not incremented in Go mode (#17295)

This commit is contained in:
euvre
2026-07-24 09:53:58 +08:00
committed by GitHub
parent 3dc298dbf5
commit 99bea630b0

View File

@@ -1622,6 +1622,7 @@ func (s *AgentService) persistAgentRunSession(
if state != nil {
session.DSL = buildPersistedAgentDSL(runDSL, state)
}
session.Round++
return s.api4ConversationDAO.Update(ctx, dao.DB, session)
}