33 lines
950 B
TypeScript
33 lines
950 B
TypeScript
import { INodeParams, INodeCredential } from '../src/Interface'
|
|
|
|
class VoyageAIApi implements INodeCredential {
|
|
label: string
|
|
name: string
|
|
version: number
|
|
description: string
|
|
inputs: INodeParams[]
|
|
|
|
constructor() {
|
|
this.label = 'Voyage AI API'
|
|
this.name = 'voyageAIApi'
|
|
this.version = 1.0
|
|
this.description =
|
|
'Refer to <a target="_blank" href="https://docs.voyageai.com/install/#authentication-with-api-keys">official guide</a> on how to get an API Key'
|
|
this.inputs = [
|
|
{
|
|
label: 'Voyage AI Endpoint',
|
|
name: 'endpoint',
|
|
type: 'string',
|
|
default: 'https://api.voyageai.com/v1/embeddings'
|
|
},
|
|
{
|
|
label: 'Voyage AI API Key',
|
|
name: 'apiKey',
|
|
type: 'password'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
module.exports = { credClass: VoyageAIApi }
|