@promptbook/google
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
16 lines (15 loc) • 675 B
TypeScript
/**
* Boilerplate is form of app that serves as a template structure for creating other formfactors
* and should not be used directly in production.
*
* @public exported from `@promptbook/core`
*/
export declare const BoilerplateFormfactorDefinition: {
readonly name: "BOILERPLATE";
readonly description: "A template structure for creating new formfactors, providing the base architecture and interfaces that should be implemented.";
readonly documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
readonly pipelineInterface: {
readonly inputParameters: readonly [];
readonly outputParameters: readonly [];
};
};