feat(SearXNG Node): Add SearXNG tool (#13218)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2025-04-10 14:37:54 +02:00
committed by GitHub
parent 965baae093
commit 0b460552ba
4 changed files with 147 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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,
},
];
}