@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
17 lines (16 loc) • 723 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 JavaScript code using AgentOS.
*
* @public exported from `@promptbook/core`
*/
export declare const AgentOsTranspiler: {
readonly name: "agent-os";
readonly title: "AgentOS";
readonly packageName: "@promptbook/core";
readonly className: "AgentOsTranspiler";
readonly transpileBook: (book: string_book, tools: ExecutionTools, options?: BookTranspilerOptions) => Promise<string_script>;
};