Compare commits

...

2 Commits

Author SHA1 Message Date
ItzCrazyKns
491136822f feat(app): lint & beautify 2025-12-17 21:17:21 +05:30
ItzCrazyKns
6e086953b1 feat(agents): add academic and social search 2025-12-17 21:17:08 +05:30
4 changed files with 1 additions and 3 deletions

View File

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

View File

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