feat: improve web_fetch readability extraction

This commit is contained in:
Peter Steinberger
2026-01-16 23:17:55 +00:00
parent 9aad6dfe1b
commit 37fa4f7eef
9 changed files with 242 additions and 8 deletions

View File

@@ -99,7 +99,7 @@ export type ToolsConfig = {
cacheTtlMinutes?: number;
};
fetch?: {
/** Enable web fetch tool (default: false). */
/** Enable web fetch tool (default: true). */
enabled?: boolean;
/** Max characters to return from fetched content. */
maxChars?: number;
@@ -109,6 +109,8 @@ export type ToolsConfig = {
cacheTtlMinutes?: number;
/** Override User-Agent header for fetch requests. */
userAgent?: string;
/** Use Readability to extract main content (default: true). */
readability?: boolean;
};
};
audio?: {