This repository was archived by the owner on Aug 13, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 25k
Expand file tree
/
Copy pathChatEmpirioLabs.ts
More file actions
233 lines (217 loc) · 8.67 KB
/
Copy pathChatEmpirioLabs.ts
File metadata and controls
233 lines (217 loc) · 8.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import axios from 'axios'
import { ChatOpenAI, ChatOpenAIFields } from '@langchain/openai'
import { BaseCache } from '@langchain/core/caches'
import { ICommonObject, INode, INodeData, INodeOptionsValue, INodeParams } from '../../../src/Interface'
import { getBaseClasses, getCredentialData, getCredentialParam } from '../../../src/utils'
const DEFAULT_BASE_URL = 'https://api.empiriolabs.ai/v1'
// Fallback chat models used when the live catalog cannot be reached
const FALLBACK_MODELS: INodeOptionsValue[] = [
{ label: 'Qwen3.7 Plus', name: 'qwen3-7-plus' },
{ label: 'Qwen3.7 Max', name: 'qwen3-7-max' },
{ label: 'DeepSeek V4 Pro', name: 'deepseek-v4-pro' },
{ label: 'DeepSeek V4 Flash', name: 'deepseek-v4-flash' },
{ label: 'GLM-5.1', name: 'glm-5-1' },
{ label: 'Kimi K2.7 Code', name: 'kimi-k2-7-code' },
{ label: 'MiniMax M3', name: 'minimax-m3' }
]
class ChatEmpirioLabs_ChatModels implements INode {
label: string
name: string
version: number
type: string
icon: string
category: string
description: string
baseClasses: string[]
credential: INodeParams
inputs: INodeParams[]
constructor() {
this.label = 'ChatEmpirioLabs'
this.name = 'chatEmpirioLabs'
this.version = 1.0
this.type = 'ChatEmpirioLabs'
this.icon = 'empiriolabs.svg'
this.category = 'Chat Models'
this.description = 'Wrapper around EmpirioLabs AI chat models that use the OpenAI compatible Chat endpoint'
this.baseClasses = [this.type, ...getBaseClasses(ChatOpenAI)]
this.credential = {
label: 'Connect Credential',
name: 'credential',
type: 'credential',
credentialNames: ['empirioLabsApi']
}
this.inputs = [
{
label: 'Cache',
name: 'cache',
type: 'BaseCache',
optional: true
},
{
label: 'Model Name',
name: 'modelName',
type: 'asyncOptions',
loadMethod: 'listModels',
default: 'qwen3-7-plus'
},
{
label: 'Temperature',
name: 'temperature',
type: 'number',
step: 0.1,
default: 0.7,
optional: true
},
{
label: 'Streaming',
name: 'streaming',
type: 'boolean',
default: true,
optional: true,
additionalParams: true
},
{
label: 'Max Tokens',
name: 'maxTokens',
type: 'number',
step: 1,
optional: true,
additionalParams: true
},
{
label: 'Top Probability',
name: 'topP',
type: 'number',
step: 0.1,
optional: true,
additionalParams: true
},
{
label: 'Frequency Penalty',
name: 'frequencyPenalty',
type: 'number',
step: 0.1,
optional: true,
additionalParams: true
},
{
label: 'Presence Penalty',
name: 'presencePenalty',
type: 'number',
step: 0.1,
optional: true,
additionalParams: true
},
{
label: 'Timeout',
name: 'timeout',
type: 'number',
step: 1,
optional: true,
additionalParams: true
},
{
label: 'Base Path',
name: 'basepath',
type: 'string',
optional: true,
default: DEFAULT_BASE_URL,
description: 'Override the default base URL for the API, e.g., "https://api.example.com/v1"',
additionalParams: true
},
{
label: 'Base Options',
name: 'baseOptions',
type: 'json',
optional: true,
description: 'Default headers to include with every request to the API.',
additionalParams: true
}
]
}
loadMethods = {
async listModels(_: INodeData, __?: ICommonObject): Promise<INodeOptionsValue[]> {
try {
const response = await axios.get(`${DEFAULT_BASE_URL}/models`)
const models = response?.data?.data
if (!Array.isArray(models) || models.length === 0) {
return FALLBACK_MODELS
}
const chatModels = models
.filter((model: ICommonObject) => {
const endpoints = model?.supported_endpoints
if (!Array.isArray(endpoints) || endpoints.length === 0) {
return true
}
return endpoints.some(
(endpoint: string) => typeof endpoint === 'string' && endpoint.includes('/v1/chat/completions')
)
})
.map((model: ICommonObject) => ({
label: (model?.display_name as string) || (model?.id as string),
name: model?.id as string,
description: model?.description as string
}))
.filter((option: INodeOptionsValue) => Boolean(option.name))
return chatModels.length > 0 ? chatModels : FALLBACK_MODELS
} catch (exception) {
return FALLBACK_MODELS
}
}
}
async init(nodeData: INodeData, _: string, options: ICommonObject): Promise<any> {
const temperature = nodeData.inputs?.temperature as string
const modelName = nodeData.inputs?.modelName as string
const maxTokens = nodeData.inputs?.maxTokens as string
const topP = nodeData.inputs?.topP as string
const frequencyPenalty = nodeData.inputs?.frequencyPenalty as string
const presencePenalty = nodeData.inputs?.presencePenalty as string
const timeout = nodeData.inputs?.timeout as string
const streaming = nodeData.inputs?.streaming as boolean
const basePath = (nodeData.inputs?.basepath as string) || DEFAULT_BASE_URL
const baseOptions = nodeData.inputs?.baseOptions
const cache = nodeData.inputs?.cache as BaseCache
const credentialData = await getCredentialData(nodeData.credential ?? '', options)
const empirioLabsApiKey = getCredentialParam('empirioLabsApiKey', credentialData, nodeData)
if (!empirioLabsApiKey || empirioLabsApiKey.trim() === '') {
throw new Error(
'EmpirioLabs API Key is missing or empty. Please provide a valid EmpirioLabs API key in the credential configuration.'
)
}
if (!modelName || modelName.trim() === '') {
throw new Error('Model Name is required. Please select or enter a valid model name (e.g., qwen3-7-plus).')
}
const obj: ChatOpenAIFields = {
temperature: parseFloat(temperature),
model: modelName,
apiKey: empirioLabsApiKey,
openAIApiKey: empirioLabsApiKey,
streaming: streaming ?? true
}
if (maxTokens) obj.maxTokens = parseInt(maxTokens, 10)
if (topP) obj.topP = parseFloat(topP)
if (frequencyPenalty) obj.frequencyPenalty = parseFloat(frequencyPenalty)
if (presencePenalty) obj.presencePenalty = parseFloat(presencePenalty)
if (timeout) obj.timeout = parseInt(timeout, 10)
if (cache) obj.cache = cache
let parsedBaseOptions: any | undefined = undefined
if (baseOptions) {
try {
parsedBaseOptions = typeof baseOptions === 'object' ? baseOptions : JSON.parse(baseOptions)
if (parsedBaseOptions.baseURL) {
console.warn("The 'baseURL' parameter is not allowed in Base Options when using the ChatEmpirioLabs node.")
parsedBaseOptions.baseURL = undefined
}
} catch (exception) {
throw new Error("Invalid JSON in the ChatEmpirioLabs's BaseOptions: " + exception)
}
}
obj.configuration = {
baseURL: basePath,
defaultHeaders: parsedBaseOptions
}
const model = new ChatOpenAI(obj)
return model
}
}
module.exports = { nodeClass: ChatEmpirioLabs_ChatModels }