summaryrefslogtreecommitdiff
path: root/packages/cli/src/tools/read-file.tool.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/cli/src/tools/read-file.tool.ts')
-rw-r--r--packages/cli/src/tools/read-file.tool.ts11
1 files changed, 3 insertions, 8 deletions
diff --git a/packages/cli/src/tools/read-file.tool.ts b/packages/cli/src/tools/read-file.tool.ts
index 98df7c12..9737e75d 100644
--- a/packages/cli/src/tools/read-file.tool.ts
+++ b/packages/cli/src/tools/read-file.tool.ts
@@ -25,16 +25,11 @@ export interface ReadFileToolParams {
}
/**
- * Standardized result from the ReadFile tool
- */
-export interface ReadFileToolResult extends ToolResult {}
-
-/**
* Implementation of the ReadFile tool that reads files from the filesystem
*/
export class ReadFileTool extends BaseTool<
ReadFileToolParams,
- ReadFileToolResult
+ ToolResult
> {
static readonly Name: string = 'read_file';
@@ -166,7 +161,7 @@ export class ReadFileTool extends BaseTool<
// If more than 30% are non-printable, likely binary
return nonPrintableCount / bytesRead > 0.3;
- } catch (error) {
+ } catch {
return false;
}
}
@@ -214,7 +209,7 @@ export class ReadFileTool extends BaseTool<
* @param params Parameters for the file reading
* @returns Result with file contents
*/
- async execute(params: ReadFileToolParams): Promise<ReadFileToolResult> {
+ async execute(params: ReadFileToolParams): Promise<ToolResult> {
const validationError = this.invalidParams(params);
const filePath = params.file_path;
if (validationError) {