@convo-lang/convo-lang
Version:
A Conversational Language
16 lines • 705 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PassthroughConvoConversationConverter = void 0;
const convo_lib_1 = require("./convo-lib");
class PassthroughConvoConversationConverter {
supportedInputTypes = [convo_lib_1.passthroughConvoInputType];
supportedOutputTypes = [convo_lib_1.passthroughConvoOutputType];
convertConvoToInput(flat, inputType) {
return (0, convo_lib_1.flatConvoConversationToBase)(flat);
}
convertOutputToConvo(target, outputType) {
return target;
}
}
exports.PassthroughConvoConversationConverter = PassthroughConvoConversationConverter;
//# sourceMappingURL=PassthroughConvoConversationConverter.js.map