UNPKG

@promptbook/remote-server

Version:

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

17 lines (16 loc) 762 B
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 the OpenAI Agents SDK. * * @public exported from `@promptbook/core` */ export declare const OpenAiAgentsTranspiler: { readonly name: "openai-agents"; readonly title: "OpenAI Agents SDK"; readonly packageName: "@promptbook/core"; readonly className: "OpenAiAgentsTranspiler"; readonly transpileBook: (book: string_book, tools: ExecutionTools, options?: BookTranspilerOptions) => Promise<string_script>; };