@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
17 lines (16 loc) • 749 B
TypeScript
import type { string_book } from '../../book-2.0/agent-source/string_book';
import type { ExecutionTools } from '../../execution/ExecutionTools';
import type { string_script } from '../../types/string_markdown';
import type { BookTranspilerOptions } from '../_common/BookTranspilerOptions';
/**
* Transpiler to a JavaScript launcher that runs the exported agent inside an E2B sandbox.
*
* @public exported from `@promptbook/core`
*/
export declare const E2BTranspiler: {
readonly name: "e2b";
readonly title: "E2B";
readonly packageName: "@promptbook/core";
readonly className: "E2BTranspiler";
readonly transpileBook: (book: string_book, tools: ExecutionTools, options?: BookTranspilerOptions) => Promise<string_script>;
};