diff options
Diffstat (limited to 'src/client/views/nodes/ChatBox/tools/SearchTool.ts')
| -rw-r--r-- | src/client/views/nodes/ChatBox/tools/SearchTool.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/ChatBox/tools/SearchTool.ts b/src/client/views/nodes/ChatBox/tools/SearchTool.ts index 91ecc71ff..6523fd11c 100644 --- a/src/client/views/nodes/ChatBox/tools/SearchTool.ts +++ b/src/client/views/nodes/ChatBox/tools/SearchTool.ts @@ -29,7 +29,7 @@ export class SearchTool extends BaseTool<{ query: string }> { const data: { type: string; text: string }[] = results.map((result: { url: string; snippet: string }) => { console.log; const id = uuidv4(); - this._addLinkedUrlDoc(result.url, id); + //this._addLinkedUrlDoc(result.url, id); //not needed right now because it shouldn't use this information to ground responses and should scrape afterwards return { type: 'text', text: `<chunk chunk_id="${id}" chunk_type="text"> |
