chore(tools): update web_search descriptions to Devv Search

Remove "requires API key" wording and rebrand to Devv Search across
tool definition, desktop UI, system prompt, and README.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
yushen
2026-02-05 17:21:39 +08:00
parent 8ea2f2a1bf
commit 630f06eddb
4 changed files with 4 additions and 4 deletions

View File

@@ -26,7 +26,7 @@ const TOOL_DESCRIPTIONS: Record<string, string> = {
exec: 'Execute shell commands',
process: 'Manage background processes',
web_fetch: 'Fetch content from URLs',
web_search: 'Search the web (requires API key)',
web_search: 'Search the web via Devv Search',
memory_get: 'Get stored memory value',
memory_set: 'Store a memory value',
memory_delete: 'Delete a memory value',

View File

@@ -23,7 +23,7 @@ const CORE_TOOL_SUMMARIES: Record<string, string> = {
glob: "Find files by glob pattern",
exec: "Run shell commands",
process: "Manage background exec sessions",
web_search: "Search the web",
web_search: "Search the web via Devv Search",
web_fetch: "Fetch and extract readable content from a URL",
memory_search: "Search memory files by keyword",
sessions_spawn: "Spawn a sub-agent session",

View File

@@ -58,7 +58,7 @@ The tools system provides LLM agents with capabilities to interact with the exte
| Exec | `exec` | Execute shell commands |
| Process | `process` | Manage long-running processes |
| Web Fetch | `web_fetch` | Fetch and extract content from URLs |
| Web Search | `web_search` | Search the web (requires API key) |
| Web Search | `web_search` | Search the web via Devv Search |
| Sessions Spawn | `sessions_spawn` | Spawn a sub-agent session |
> **Note**: Agents use file-based memory (`memory.md`, `memory/*.md`) via `read` and `edit` tools instead of dedicated memory tools.

View File

@@ -116,7 +116,7 @@ export function createWebSearchTool(): AgentTool<typeof WebSearchSchema, unknown
name: "web_search",
label: "Web Search",
description:
"Search the web for information. Returns a list of results with titles, URLs, and snippets.",
"Search the web via Devv Search. Returns a list of results with titles, URLs, and snippets.",
parameters: WebSearchSchema,
execute: async (_toolCallId, args) => {
const params = args as WebSearchArgs;