feat: Implement MistralCloud Chat & Embeddings nodes (#8239)

Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
Co-authored-by: Michael Kret <michael.k@radency.com>
This commit is contained in:
oleg
2024-01-08 16:17:55 +01:00
committed by GitHub
parent 38d91c43e3
commit d37b9084b2
8 changed files with 968 additions and 6 deletions

View File

@@ -0,0 +1,42 @@
import type {
IAuthenticateGeneric,
ICredentialTestRequest,
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class MistralCloudApi implements ICredentialType {
name = 'mistralCloudApi';
displayName = 'Mistral Cloud API';
documentationUrl = 'mistralCloud';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
required: true,
default: '',
},
];
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
headers: {
Authorization: '=Bearer {{$credentials.apiKey}}',
},
},
};
test: ICredentialTestRequest = {
request: {
baseURL: 'https://api.mistral.ai/v1',
url: '/models',
method: 'GET',
},
};
}