@cascadeflow/n8n-nodes-cascadeflow 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/credentials/CascadeFlowApi.credentials.js +1 -0
- package/dist/nodes/CascadeFlowAgent/CascadeFlowAgent.node.js +324 -0
- package/dist/nodes/CascadeFlowAgent/cascadeflow.svg +15 -0
- package/dist/nodes/LmChatCascadeFlow/LmChatCascadeFlow.node.js +321 -0
- package/dist/nodes/LmChatCascadeFlow/cascade-metadata.js +1 -0
- package/dist/nodes/LmChatCascadeFlow/cascadeflow.svg +15 -0
- package/dist/nodes/LmChatCascadeFlow/config.js +1 -0
- package/package.json +16 -13
- package/LICENSE +0 -21
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";var i=Object.defineProperty;var s=Object.getOwnPropertyDescriptor;var n=Object.getOwnPropertyNames;var d=Object.prototype.hasOwnProperty;var l=(t,e)=>{for(var a in e)i(t,a,{get:e[a],enumerable:!0})},y=(t,e,a,o)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of n(e))!d.call(t,r)&&r!==a&&i(t,r,{get:()=>e[r],enumerable:!(o=s(e,r))||o.enumerable});return t};var c=t=>y(i({},"__esModule",{value:!0}),t);var A={};l(A,{CascadeFlowApi:()=>p});module.exports=c(A);var p=class{constructor(){this.name="cascadeFlowApi";this.displayName="Cascadeflow API";this.documentationUrl="https://github.com/lemony-ai/cascadeflow";this.properties=[{displayName:"OpenAI API Key",name:"openaiApiKey",type:"string",typeOptions:{password:!0},default:"",description:"API key for OpenAI (GPT-4, GPT-4o, etc.)",placeholder:"sk-..."},{displayName:"Anthropic API Key",name:"anthropicApiKey",type:"string",typeOptions:{password:!0},default:"",description:"API key for Anthropic (Claude models)",placeholder:"sk-ant-..."},{displayName:"Groq API Key",name:"groqApiKey",type:"string",typeOptions:{password:!0},default:"",description:"API key for Groq (fast Llama inference)",placeholder:"gsk_..."},{displayName:"Together AI API Key",name:"togetherApiKey",type:"string",typeOptions:{password:!0},default:"",description:"API key for Together AI",placeholder:""},{displayName:"HuggingFace API Key",name:"huggingfaceApiKey",type:"string",typeOptions:{password:!0},default:"",description:"API key for HuggingFace Inference",placeholder:"hf_..."}];this.authenticate={type:"generic",properties:{}};this.test={request:{baseURL:"https://api.openai.com/v1",url:"/models",method:"GET",headers:{Authorization:"=Bearer {{$credentials.openaiApiKey}}"}}}}};0&&(module.exports={CascadeFlowApi});
|