2026-03-22 11:21:58 +00:00
|
|
|
package agent
|
|
|
|
|
|
2026-04-26 08:55:02 +00:00
|
|
|
// HookMeta contains correlation fields shared by agent hook requests and
|
|
|
|
|
// runtime events emitted from turn processing.
|
|
|
|
|
type HookMeta struct {
|
2026-03-22 11:21:58 +00:00
|
|
|
AgentID string
|
|
|
|
|
TurnID string
|
|
|
|
|
ParentTurnID string
|
|
|
|
|
SessionKey string
|
|
|
|
|
Iteration int
|
|
|
|
|
TracePath string
|
|
|
|
|
Source string
|
2026-04-01 07:23:36 +00:00
|
|
|
turnContext *TurnContext
|
2026-03-22 11:21:58 +00:00
|
|
|
}
|