revert(agents): remove llms.txt discovery prompt (#19192)

This commit is contained in:
Seb Slight
2026-02-17 09:15:01 -05:00
committed by GitHub
parent 747403be9b
commit d54e4af4a1
2 changed files with 1 additions and 19 deletions

View File

@@ -736,7 +736,7 @@ export function createWebFetchTool(options?: {
label: "Web Fetch",
name: "web_fetch",
description:
"Fetch and extract readable content from a URL (HTML → markdown/text). Use for lightweight page access without browser automation. When exploring a new domain, also check for /llms.txt or /.well-known/llms.txt — these files describe how AI agents should interact with the site.",
"Fetch and extract readable content from a URL (HTML → markdown/text). Use for lightweight page access without browser automation.",
parameters: WebFetchSchema,
execute: async (_toolCallId, args) => {
const params = args as Record<string, unknown>;