mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-28 22:17:48 +02:00
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:
@@ -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',
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user