UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

7 lines (6 loc) 281 B
/// <reference types="node" /> import type fs from 'fs/promises'; /** * Container for all the tools needed to manipulate with filesystem */ export type FilesystemTools = Pick<typeof fs, 'access' | 'constants' | 'readFile' | 'writeFile' | 'stat' | 'readdir' | 'mkdir' | 'watch'>;