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

14
tools/read_file.js Normal file
View File

@@ -0,0 +1,14 @@
const virtual_chroot = '/home/seb/src/aiTools/tmp';
export default {
type: "function", name: "read_file", description: "read a file", strict: true,
parameters: {
type: "object", required: ["path","linesToSkip","linesToRead"],additionalProperties: false, properties: {
path: { type: "string", description: "The path to the file to read.",},
linesToSkip: { type: "number", description: "The number of lines to skip. Use 0 to read from the beginning.",},
linesToRead: { type: "number",description: "1-400 The number of lines to read. Use 0 or more than 400 to read 400 lines.",}
},},};
export async function run() {
return `read_file error (not implemented)`
}