mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
28 lines
531 B
TypeScript
28 lines
531 B
TypeScript
import type { ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
export class OllamaApi implements ICredentialType {
|
|
name = 'ollamaApi';
|
|
|
|
displayName = 'Ollama';
|
|
|
|
documentationUrl = 'ollama';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Base URL',
|
|
name: 'baseUrl',
|
|
required: true,
|
|
type: 'string',
|
|
default: 'http://localhost:11434',
|
|
},
|
|
];
|
|
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
baseURL: '={{ $credentials.baseUrl }}',
|
|
url: '/',
|
|
method: 'GET',
|
|
},
|
|
};
|
|
}
|