UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

26 lines (25 loc) 977 B
/** * Translator is form of app that transforms input text from one form to another, * such as language translation, style conversion, tone modification, or other text transformations. * * @public exported from `@promptbook/core` */ export declare const TranslatorFormfactorDefinition: { readonly name: "TRANSLATOR"; readonly description: string; readonly documentationUrl: "https://github.com/webgptorg/promptbook/discussions/175"; readonly pipelineInterface: { readonly inputParameters: readonly [{ readonly name: "inputMessage"; readonly description: "Input message to be translated"; readonly isInput: true; readonly isOutput: false; }]; readonly outputParameters: readonly [{ readonly name: "outputMessage"; readonly description: "Translated output message"; readonly isInput: false; readonly isOutput: true; }]; }; };