@promptbook/documents
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
17 lines (16 loc) • 822 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 Anthropic Claude Agent SDK managed sessions.
*
* @public exported from `@promptbook/core`
*/
export declare const AnthropicClaudeManagedTranspiler: {
readonly name: "anthropic-claude-managed";
readonly title: "Anthropic Claude Managed";
readonly packageName: "@promptbook/core";
readonly className: "AnthropicClaudeManagedTranspiler";
readonly transpileBook: (book: string_book, tools: ExecutionTools, options?: BookTranspilerOptions) => Promise<string_script>;
};