(response: SearchResponse, show_content: boolean)
| 75 | } |
| 76 | |
| 77 | function formatSearchResponse(response: SearchResponse, show_content: boolean) { |
| 78 | return response.data |
| 79 | .map((chunk) => formatChunk(chunk, show_content)) |
| 80 | .join("\n"); |
| 81 | } |
| 82 | |
| 83 | function isWebResult(chunk: ChunkType): boolean { |
| 84 | return ( |