forked from FlowiseAI/Flowise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIBMWatsonxEmbedding.ts
107 lines (98 loc) · 3.95 KB
/
IBMWatsonxEmbedding.ts
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
import { WatsonxEmbeddings, WatsonxInputEmbeddings } from '@langchain/community/embeddings/ibm'
import { WatsonxAuth } from '@langchain/community/dist/types/ibm'
import { ICommonObject, INode, INodeData, INodeParams } from '../../../src/Interface'
import { getBaseClasses, getCredentialData, getCredentialParam } from '../../../src/utils'
class IBMWatsonx_Embeddings 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 = 'IBM Watsonx Embeddings'
this.name = 'ibmEmbedding'
this.version = 1.0
this.type = 'WatsonxEmbeddings'
this.icon = 'ibm.png'
this.category = 'Embeddings'
this.description = 'Generate embeddings for a given text using open source model on IBM Watsonx'
this.baseClasses = [this.type, ...getBaseClasses(WatsonxEmbeddings)]
this.credential = {
label: 'Connect Credential',
name: 'credential',
type: 'credential',
credentialNames: ['ibmWatsonx']
}
this.inputs = [
{
label: 'Model Name',
name: 'modelName',
type: 'string',
default: 'ibm/slate-30m-english-rtrvr'
},
{
label: 'Truncate Input Tokens',
name: 'truncateInputTokens',
type: 'number',
description: 'Truncate the input tokens.',
step: 1,
optional: true,
additionalParams: true
},
{
label: 'Max Retries',
name: 'maxRetries',
type: 'number',
description: 'The maximum number of retries.',
step: 1,
optional: true,
additionalParams: true
},
{
label: 'Max Concurrency',
name: 'maxConcurrency',
type: 'number',
description: 'The maximum number of concurrencies.',
step: 1,
optional: true,
additionalParams: true
}
]
}
async init(nodeData: INodeData, _: string, options: ICommonObject): Promise<any> {
const modelName = nodeData.inputs?.modelName as string
const truncateInputTokens = nodeData.inputs?.truncateInputTokens as string
const maxRetries = nodeData.inputs?.maxRetries as string
const maxConcurrency = nodeData.inputs?.maxConcurrency as string
const credentialData = await getCredentialData(nodeData.credential ?? '', options)
const version = getCredentialParam('version', credentialData, nodeData)
const serviceUrl = getCredentialParam('serviceUrl', credentialData, nodeData)
const projectId = getCredentialParam('projectId', credentialData, nodeData)
const watsonxAIAuthType = getCredentialParam('watsonxAIAuthType', credentialData, nodeData)
const watsonxAIApikey = getCredentialParam('watsonxAIApikey', credentialData, nodeData)
const watsonxAIBearerToken = getCredentialParam('watsonxAIBearerToken', credentialData, nodeData)
const auth = {
version,
serviceUrl,
projectId,
watsonxAIAuthType,
watsonxAIApikey,
watsonxAIBearerToken
}
const obj: WatsonxInputEmbeddings & WatsonxAuth = {
...auth,
model: modelName
}
if (truncateInputTokens) obj.truncateInputTokens = parseInt(truncateInputTokens, 10)
if (maxRetries) obj.maxRetries = parseInt(maxRetries, 10)
if (maxConcurrency) obj.maxConcurrency = parseInt(maxConcurrency, 10)
const model = new WatsonxEmbeddings(obj)
return model
}
}
module.exports = { nodeClass: IBMWatsonx_Embeddings }