(s: string)
| 51 | // workers runtimes. |
| 52 | const _enc = new TextEncoder(); |
| 53 | function utf8ByteLength(s: string): number { |
| 54 | return _enc.encode(s).length; |
| 55 | } |
| 56 | export function createReadTool(options: ReadToolOptions): Tool<z.infer<typeof inputSchema>> { |
| 57 | const { store } = options; |
| 58 | const maxLines = options.maxLines ?? DEFAULT_MAX_LINES; |