@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
12 lines (11 loc) • 604 B
TypeScript
import type { PipelineString } from './PipelineString';
/**
* Function `isValidPipelineString` will validate the if the string is a valid pipeline string
* It does not check if the string is fully logically correct, but if it is a string that can be a pipeline string or the string looks completely different.
*
* @param {string} pipelineString the candidate for a pipeline string
* @returns {boolean} if the string is a valid pipeline string
*
* @public exported from `@promptbook/core`
*/
export declare function isValidPipelineString(pipelineString: string): pipelineString is PipelineString;