Files
n8n-enterprise-unlocked/packages/@n8n/nodes-langchain/credentials/SearXngApi.credentials.ts
कारतोफ्फेलस्क्रिप्ट™ 0b460552ba feat(SearXNG Node): Add SearXNG tool (#13218)
2025-04-10 14:37:54 +02:00

20 lines
356 B
TypeScript

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class SearXngApi implements ICredentialType {
name = 'searXngApi';
displayName = 'SearXNG';
documentationUrl = 'searxng';
properties: INodeProperties[] = [
{
displayName: 'API URL',
name: 'apiUrl',
type: 'string',
default: '',
required: true,
},
];
}