(references: string[])
| 141 | } |
| 142 | |
| 143 | function getThreadIds(references: string[]) { |
| 144 | return references.filter( |
| 145 | (url) => !url.startsWith('https://') && !url.startsWith('http://') |
| 146 | ); |
| 147 | } |
| 148 | |
| 149 | export async function parseBody( |
| 150 | response: LLMPredictionResponse, |