File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -3541,7 +3541,7 @@ func hasResponseGateHook(agentRun *sympoziumv1alpha1.AgentRun) bool {
35413541// gateVerdict represents the JSON payload a gate hook writes to the
35423542// sympozium.ai/gate-verdict annotation on the AgentRun CR.
35433543type gateVerdict struct {
3544- Action string `json:"action"` // approve, reject, rewrite
3544+ Action string `json:"action"` // approve, reject, rewrite
35453545 Response string `json:"response,omitempty"` // replacement text for reject/rewrite
35463546 Reason string `json:"reason,omitempty"` // audit trail
35473547}
Original file line number Diff line number Diff line change @@ -32,12 +32,12 @@ const (
3232
3333// Bridge is the IPC bridge sidecar process.
3434type Bridge struct {
35- BasePath string // Root IPC path (e.g., /ipc)
36- AgentRunID string
37- InstanceName string
38- EventBus eventbus.EventBus
39- Log logr.Logger
40- Watcher * Watcher
35+ BasePath string // Root IPC path (e.g., /ipc)
36+ AgentRunID string
37+ InstanceName string
38+ EventBus eventbus.EventBus
39+ Log logr.Logger
40+ Watcher * Watcher
4141 agentDone chan struct {} // signalled when result.json is received
4242 processedFiles sync.Map // dedup fsnotify Create+Write for the same file
4343 SuppressCompletion bool // when true, do not publish TopicAgentRunCompleted (gate mode)
You can’t perform that action at this time.
0 commit comments