(ragName, strategyName string, current, total int, agentName string)
| 748 | } |
| 749 | |
| 750 | func RAGIndexingProgress(ragName, strategyName string, current, total int, agentName string) Event { |
| 751 | return &RAGIndexingProgressEvent{ |
| 752 | Type: "rag_indexing_progress", |
| 753 | RAGName: ragName, |
| 754 | StrategyName: strategyName, |
| 755 | Current: current, |
| 756 | Total: total, |
| 757 | AgentContext: newAgentContext(agentName), |
| 758 | } |
| 759 | } |
| 760 | |
| 761 | type RAGIndexingCompletedEvent struct { |
| 762 | AgentContext |
no test coverage detected