feat(web): add SearxNG connector metadata

This commit is contained in:
Aki-07 2025-10-12 20:44:43 +05:30
parent 0f56de340d
commit 467da1e345
5 changed files with 8 additions and 3 deletions

View file

@ -23,7 +23,7 @@ export const getConnectorTypeDisplay = (type: string): string => {
const typeMap: Record<string, string> = {
SERPER_API: "Serper API",
TAVILY_API: "Tavily API",
// Add other connector types here as needed
SEARXNG_API: "SearxNG",
};
return typeMap[type] || type;
};