feat(app): lint & beautify

This commit is contained in:
ItzCrazyKns
2025-12-17 21:17:21 +05:30
parent 6e086953b1
commit 491136822f
2 changed files with 1 additions and 3 deletions

View File

@@ -57,7 +57,7 @@ export const POST = async (req: Request) => {
llm: llm, llm: llm,
sources: ['web', 'discussions', 'academic'], sources: ['web', 'discussions', 'academic'],
mode: 'balanced', mode: 'balanced',
fileIds: [] fileIds: [],
}, },
followUp: body.query, followUp: body.query,
}); });

View File

@@ -1,5 +1,3 @@
import { Message } from '@/components/ChatWindow';
export const getSuggestions = async (chatHistory: [string, string][]) => { export const getSuggestions = async (chatHistory: [string, string][]) => {
const chatTurns = chatHistory.map(([role, content]) => { const chatTurns = chatHistory.map(([role, content]) => {
if (role === 'human') { if (role === 'human') {