···12121313 RunID string `json:"run_id"`
1414 Model string `json:"model"`
1515+ Scene string `json:"scene,omitempty"`
1516 Step int `json:"step"`
16171718 PlanRequired bool `json:"plan_required"`
+1
agent/types.go
···107107108108type RunOptions struct {
109109 Model string
110110+ Scene string
110111 History []llm.Message
111112 Meta map[string]any
112113 // CurrentMessage, when set, is appended as the final user turn after meta and history.