(progress float64, message string, step, total int, metadata map[string]any, etaMs int64)
| 1571 | } |
| 1572 | |
| 1573 | func (tr *toolReporter) Progress(progress float64, message string, step, total int, metadata map[string]any, etaMs int64) { |
| 1574 | tr.agent.handleToolProgress(tr.callID, tr.toolName, progress, message, step, total, metadata, etaMs) |
| 1575 | } |
| 1576 | |
| 1577 | func (tr *toolReporter) Intermediate(label string, data any) { |
| 1578 | tr.agent.handleToolIntermediate(tr.callID, tr.toolName, label, data) |
nothing calls this directly
no test coverage detected