UNPKG

@izzai/n8n-nodes-izzone

Version:

n8n custom node for izz.ONE

55 lines (54 loc) 1.51 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LlmBehavior = exports.LlmBehaviorEnum = void 0; // Copy from apps/nexus-api/src/customTypes/chat.ts var LlmBehaviorEnum; (function (LlmBehaviorEnum) { LlmBehaviorEnum["CONVERSATIONAL"] = "conversational"; LlmBehaviorEnum["EXPLAINING"] = "explaining"; LlmBehaviorEnum["CREATIVE"] = "creative"; LlmBehaviorEnum["FORMAL"] = "formal"; LlmBehaviorEnum["INFORMAL"] = "informal"; LlmBehaviorEnum["TECHNICAL"] = "technical"; LlmBehaviorEnum["FRIENDLY"] = "friendly"; LlmBehaviorEnum["PROFESSIONAL"] = "professional"; LlmBehaviorEnum["HUMOROUS"] = "humorous"; })(LlmBehaviorEnum || (exports.LlmBehaviorEnum = LlmBehaviorEnum = {})); exports.LlmBehavior = [ { name: 'Conversational', value: LlmBehaviorEnum.CONVERSATIONAL, }, { name: 'Explaining', value: LlmBehaviorEnum.EXPLAINING, }, { name: 'Creative', value: LlmBehaviorEnum.CREATIVE, }, { name: 'Formal', value: LlmBehaviorEnum.FORMAL, }, { name: 'Informal', value: LlmBehaviorEnum.INFORMAL, }, { name: 'Technical', value: LlmBehaviorEnum.TECHNICAL, }, { name: 'Friendly', value: LlmBehaviorEnum.FRIENDLY, }, { name: 'Professional', value: LlmBehaviorEnum.PROFESSIONAL, }, { name: 'Humorous', value: LlmBehaviorEnum.HUMOROUS, }, ];