(text: string)
| 224 | * @returns Text with @references stripped out |
| 225 | */ |
| 226 | export function stripAgentReferences(text: string): string { |
| 227 | return text.replace(/@\w+(?:#\d+)?/g, '').trim(); |
| 228 | } |
| 229 | |
| 230 | /** |
| 231 | * Gets recent runs for an agent from IterationStore |
nothing calls this directly
no outgoing calls
no test coverage detected