remove unnecessary checks in WriteFileChecks.getDescription (#5526)

This commit is contained in:
Jacob MacDonald
2025-08-04 12:12:33 -07:00
committed by GitHub
parent 8ba12269d5
commit 12fc17bc8c
2 changed files with 29 additions and 3 deletions

View File

@@ -131,8 +131,8 @@ export class WriteFileTool
}
getDescription(params: WriteFileToolParams): string {
if (!params.file_path || !params.content) {
return `Model did not provide valid parameters for write file tool`;
if (!params.file_path) {
return `Model did not provide valid parameters for write file tool, missing or empty "file_path"`;
}
const relativePath = makeRelative(
params.file_path,