| 45 | } |
| 46 | |
| 47 | type agentExecutor struct { |
| 48 | execID string |
| 49 | eventLog EventLog |
| 50 | registry map[string]agent.Agent |
| 51 | } |
| 52 | |
| 53 | func (ae *agentExecutor) Exec(ctx context.Context, conversationID string, execID string, start *proto.AgentStart, o agent.OutputHandler) (proto.State, error) { |
| 54 | execID = newExecID(ae.execID, execID) |
nothing calls this directly
no outgoing calls
no test coverage detected