feat(app): lint & beautify

This commit is contained in:
ItzCrazyKns
2026-01-03 23:12:19 +05:30
parent a16472bcf3
commit 8347b798f3
2 changed files with 1 additions and 2 deletions

View File

@@ -3,7 +3,6 @@ import { suggestionGeneratorPrompt } from '@/lib/prompts/suggestions';
import { ChatTurnMessage } from '@/lib/types';
import z from 'zod';
import BaseLLM from '@/lib/models/base/llm';
import { i } from 'mathjs';
type SuggestionGeneratorInput = {
chatHistory: ChatTurnMessage[];

View File

@@ -43,6 +43,6 @@ export const searchSearxng = async (
const results: SearxngSearchResult[] = data.results;
const suggestions: string[] = data.suggestions;
return { results, suggestions };
};