More memory fixes
All checks were successful
Publish Library / Build NPM Project (push) Successful in 43s
Publish Library / Tag Version (push) Successful in 14s

This commit is contained in:
2026-07-29 22:11:09 -04:00
parent 14f6cdd313
commit 8dfcd06752
9 changed files with 426 additions and 376 deletions

View File

@@ -133,7 +133,7 @@ export const ExecTool: AiTool = {
}
export const FetchTool: AiTool = {
name: 'fetch',
name: 'net_fetch',
description: 'Make HTTP request to URL',
args: {
url: {type: 'string', description: 'URL to fetch', required: true},
@@ -172,7 +172,7 @@ export const PythonTool: AiTool = {
}
export const ReadWebpageTool: AiTool = {
name: 'read_webpage',
name: 'net_read',
description: 'Extract clean content from webpages, or convert media/documents to accessible formats',
args: {
url: {type: 'string', description: 'URL to read', required: true},
@@ -276,7 +276,7 @@ export const ReadWebpageTool: AiTool = {
};
export const WebSearchTool: AiTool = {
name: 'web_search',
name: 'net_search',
description: 'Use duckduckgo (anonymous) to find find relevant online resources. Returns a list of URLs that works great with the `read_webpage` tool',
args: {
query: {type: 'string', description: 'Search string', required: true},
@@ -302,7 +302,7 @@ export const WebSearchTool: AiTool = {
}
export const WikipediaTool: AiTool = {
name: 'wikipedia_search',
name: 'get_wikipedia',
description: 'Search Wikipedia for matching articles',
args: {
query: {type: 'string', description: 'Search term or article title', required: true},