@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
22 lines (21 loc) • 888 B
TypeScript
/**
* Matcher is form of app that evaluates (spreadsheet) content against defined criteria or patterns,
* determining if it matches or meets specific requirements. Used for classification,
* validation, filtering, and quality assessment of inputs.
*
* @public exported from `@promptbook/core`
*/
export declare const MatcherFormfactorDefinition: {
readonly name: "EXPERIMENTAL_MATCHER";
readonly description: string;
readonly documentationUrl: "https://github.com/webgptorg/promptbook/discussions/177";
readonly pipelineInterface: {
readonly inputParameters: readonly [{
readonly name: "nonce";
readonly description: "Just to prevent EXPERIMENTAL_MATCHER to be set as implicit formfactor";
readonly isInput: true;
readonly isOutput: false;
}];
readonly outputParameters: readonly [];
};
};