(ms: number)
| 130 | } |
| 131 | |
| 132 | const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)); |
| 133 | |
| 134 | function convertAgentTraceToUiChunk(event: AgentTracePartEntry): UIMessageChunk | null { |
| 135 | const payload = (event.part ?? {}) as Record<string, unknown>; |
no outgoing calls
no test coverage detected