@promptbook/google
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
27 lines (26 loc) • 1.1 kB
TypeScript
/**
* Sheets is form of app that processes tabular data in CSV format, allowing transformation
* and analysis of structured data through AI-powered operations
*
* @public exported from `@promptbook/core`
*/
export declare const SheetsFormfactorDefinition: {
readonly name: "SHEETS";
readonly aliasNames: readonly ["SHEETS", "SHEET"];
readonly description: "A formfactor for processing spreadsheet-like data in CSV format, enabling AI transformations on tabular data";
readonly documentationUrl: "https://github.com/webgptorg/promptbook/discussions/176";
readonly pipelineInterface: {
readonly inputParameters: readonly [{
readonly name: "inputSheet";
readonly description: "Input sheet to be processed as csv";
readonly isInput: true;
readonly isOutput: false;
}];
readonly outputParameters: readonly [{
readonly name: "outputSheet";
readonly description: "Output sheet as csv";
readonly isInput: false;
readonly isOutput: true;
}];
};
};