返回 DeepSeek-Reasonix
fork_compat.go
根目录 / internal / agent / fork_compat.go
1 package agent
2
3 // ebmState is retained only to read and reproduce historical experiment fork
4 // bundles. The EBM and reasoning-governor enforcement paths are retired.
5 type ebmState struct {
6 fired bool
7 captureArmed bool
8 captured bool
9 captureRound int
10 }
11
11 lines GO