Remove echo.js tool as it is no longer needed for input handling and response generation. This simplifies the codebase by eliminating unused functionality.

This commit is contained in:
sebseb7
2025-08-11 22:16:24 +02:00
parent fc0c0669f8
commit 8d23ec53e1
3 changed files with 30 additions and 15 deletions

16
tools/ripgrep.js Normal file
View File

@@ -0,0 +1,16 @@
const virtual_chroot = '/home/seb/src/aiTools/tmp';
export default {
type: "function", name: "ripgrep", strict: true,
description: "ripgrep (rg) search ( rg pattern -g filePattern | head -200) , always limited to 200 lines",
parameters: {
type: "object", required: ["pattern","filePattern","n_flag","i_flag"], additionalProperties: false, properties: {
pattern: {type: "string", description: 'The pattern to search for.'},
filePattern: { type: "string", description: "'*.js' for only js files, '!*.log' for all files except log files , '' for all files"},
n_flag: { type: "boolean",description: "show line numbers."},
i_flag: { type: "boolean",description: "case insensitive search."}
},},};
export async function run(args) {
return `ripgrep error (not implemented)`
}