MCPcopy Create free account
hub / github.com/GongShichen/LuminaCode / summaryModel

Method summaryModel

sessionmemory/store.go:438–443  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

436 }
437 lastCommitted := s.metaInt(ctx, "last_committed_user_turn")
438 maxUserTurn := s.maxUserTurn(ctx)
439 if maxUserTurn <= lastCommitted {
440 return nil
441 }
442 for maxUserTurn >= lastCommitted+interval || (force && maxUserTurn > lastCommitted) {
443 end := lastCommitted + interval
444 if force && maxUserTurn < end {
445 end = maxUserTurn
446 }

Callers 2

CommitRangeMethod · 0.95
summarizeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected