@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
13 lines (12 loc) • 455 B
TypeScript
import type { string_markdown_text } from '../../types/string_markdown';
import type { Command } from './types/Command';
/**
* Stringifies the command
*
* @returns stringified command
* @throws {UnexpectedError} if the command is invalid
* @deprecated Option to convert JSON back to string is outdated and will be removed
*
* @private within the compilePipeline
*/
export declare function stringifyCommand(command: Command): string_markdown_text;