We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a16472b commit 8347b79Copy full SHA for 8347b79
src/lib/agents/suggestions/index.ts
@@ -3,7 +3,6 @@ import { suggestionGeneratorPrompt } from '@/lib/prompts/suggestions';
3
import { ChatTurnMessage } from '@/lib/types';
4
import z from 'zod';
5
import BaseLLM from '@/lib/models/base/llm';
6
-import { i } from 'mathjs';
7
8
type SuggestionGeneratorInput = {
9
chatHistory: ChatTurnMessage[];
src/lib/searxng.ts
@@ -43,6 +43,6 @@ export const searchSearxng = async (
43
44
const results: SearxngSearchResult[] = data.results;
45
const suggestions: string[] = data.suggestions;
46
-
+
47
return { results, suggestions };
48
};
0 commit comments