(runs?: LangsmithRunPayload[])
| 72 | .filter((value): value is string => Boolean(value)) |
| 73 | |
| 74 | const collectRunIds = (runs?: LangsmithRunPayload[]) => |
| 75 | runs?.map((run) => normalizeLangsmithRunPayload(run).runId) ?? [] |
| 76 | |
| 77 | return { |
| 78 | success: true, |
no test coverage detected