feat(search): Add searchUrl to message feat(parsers): Enhance parsers to deal with some thinking models better.
65 lines
1.6 KiB
TypeScript
65 lines
1.6 KiB
TypeScript
import axios from 'axios';
|
|
import { getSearxngApiEndpoint } from './config';
|
|
|
|
interface SearxngSearchOptions {
|
|
categories?: string[];
|
|
engines?: string[];
|
|
language?: string;
|
|
pageno?: number;
|
|
}
|
|
|
|
interface SearxngSearchResult {
|
|
title: string;
|
|
url: string;
|
|
img_src?: string;
|
|
thumbnail_src?: string;
|
|
thumbnail?: string;
|
|
content?: string;
|
|
author?: string;
|
|
iframe_src?: string;
|
|
}
|
|
|
|
interface SearxngResponse {
|
|
results: SearxngSearchResult[];
|
|
suggestions: string[];
|
|
searchUrl: string;
|
|
}
|
|
|
|
export const searchSearxng = async (
|
|
query: string,
|
|
opts?: SearxngSearchOptions,
|
|
) => {
|
|
const searxngURL = getSearxngApiEndpoint();
|
|
|
|
const url = new URL(`${searxngURL}/search?format=json`);
|
|
url.searchParams.append('q', query);
|
|
|
|
if (opts) {
|
|
Object.keys(opts).forEach((key) => {
|
|
const value = opts[key as keyof SearxngSearchOptions];
|
|
if (Array.isArray(value)) {
|
|
url.searchParams.append(key, value.join(','));
|
|
return;
|
|
}
|
|
url.searchParams.append(key, value as string);
|
|
});
|
|
}
|
|
|
|
const res = await axios.get(url.toString());
|
|
|
|
const results: SearxngSearchResult[] = res.data.results;
|
|
const suggestions: string[] = res.data.suggestions;
|
|
|
|
// Create a URL for viewing the search results in the SearXNG web interface
|
|
const searchUrl = new URL(searxngURL);
|
|
searchUrl.pathname = '/search';
|
|
searchUrl.searchParams.append('q', query);
|
|
if (opts?.engines?.length) {
|
|
searchUrl.searchParams.append('engines', opts.engines.join(','));
|
|
}
|
|
if (opts?.language) {
|
|
searchUrl.searchParams.append('language', opts.language);
|
|
}
|
|
|
|
return { results, suggestions, searchUrl: searchUrl.toString() };
|
|
};
|