More memory fixes
This commit is contained in:
@@ -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},
|
||||
|
||||
Reference in New Issue
Block a user