[feature] adds web_search and fetch_url tool calls

This commit is contained in:
2026-03-02 16:13:34 -08:00
parent c47646a48c
commit d5b06ce22a
12 changed files with 951 additions and 48 deletions

3
server/src/types/html-to-text.d.ts vendored Normal file
View File

@@ -0,0 +1,3 @@
declare module "html-to-text" {
export function convert(html: string, options?: unknown): string;
}