@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
15 lines (14 loc) • 436 B
TypeScript
/**
* A generic pipeline
*
* @public exported from `@promptbook/core`
*/
export declare const GenericFormfactorDefinition: {
readonly name: "GENERIC";
readonly description: "A generic pipeline";
readonly documentationUrl: "https://github.com/webgptorg/promptbook/discussions/173";
readonly pipelineInterface: {
readonly inputParameters: readonly [];
readonly outputParameters: readonly [];
};
};