===== AgentStep =====
| 27 | // ===== AgentStep ===== |
| 28 | |
| 29 | type AgentStep struct { |
| 30 | id string |
| 31 | name string |
| 32 | description string |
| 33 | agent *agent.Agent |
| 34 | config *StepConfig |
| 35 | } |
| 36 | |
| 37 | func NewAgentStep(name string, agent *agent.Agent) *AgentStep { |
| 38 | return &AgentStep{ |
nothing calls this directly
no outgoing calls
no test coverage detected