We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1430d3e commit c2101e4Copy full SHA for c2101e4
1 file changed
pkg/cache/kvcache/event_types.go
@@ -107,7 +107,10 @@ type BlockStoredEvent struct {
107
LoraID *int64 // position 5; deprecated upstream in favor of LoraName
108
Medium *string // position 6; storage tier, e.g. "GPU"/"cpu" (nil = unspecified)
109
LoraName *string // position 7; canonical adapter id
110
- GroupIdx *int64 // position 9; KV-cache group for hybrid-attention models
+ // position 8 (extra_keys) is intentionally not decoded here; it is consumed
111
+ // in the follow-up PR for block-hash reconstruction. GroupIdx is read at its
112
+ // fixed position 9 regardless.
113
+ GroupIdx *int64 // position 9; KV-cache group for hybrid-attention models
114
115
// NOTE: These are NOT part of msgpack
116
Timestamp time.Time `msgpack:"-"`
0 commit comments