UNPKG

@promptbook/vercel

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

10 lines (9 loc) 480 B
import type { AgentSourceParseResult } from './AgentSourceParseResult'; import type { string_book } from './string_book'; /** * Parses agent source using the new commitment system with multiline support * This function replaces the hardcoded commitment parsing in the original parseAgentSource * * @private internal utility of `parseAgentSource` */ export declare function parseAgentSourceWithCommitments(agentSource: string_book): Omit<AgentSourceParseResult, 'agentHash'>;