diff options
Diffstat (limited to 'packages/server/src/tools/read-many-files.ts')
| -rw-r--r-- | packages/server/src/tools/read-many-files.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/server/src/tools/read-many-files.ts b/packages/server/src/tools/read-many-files.ts index fad05759..0b4b090d 100644 --- a/packages/server/src/tools/read-many-files.ts +++ b/packages/server/src/tools/read-many-files.ts @@ -116,14 +116,13 @@ export class ReadManyFilesTool extends BaseTool< ToolResult > { static readonly Name: string = 'read_many_files'; - readonly targetDir: string; /** * Creates an instance of ReadManyFilesTool. * @param targetDir The absolute root directory within which this tool is allowed to operate. * All paths provided in `params` will be resolved relative to this directory. */ - constructor(targetDir: string) { + constructor(readonly targetDir: string) { const parameterSchema: Record<string, unknown> = { type: 'object', properties: { |
