From 3d1d164f685e06fb14b514b5b52930c819f74ddd Mon Sep 17 00:00:00 2001 From: ItzCrazyKns <95534749+ItzCrazyKns@users.noreply.github.com> Date: Sat, 13 Dec 2025 22:23:54 +0530 Subject: [PATCH] feat(app): lint & beautify --- src/app/api/suggestions/route.ts | 1 - src/lib/agents/search/researcher/actions/scrapeURL.ts | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/api/suggestions/route.ts b/src/app/api/suggestions/route.ts index 0c70cba..07432d6 100644 --- a/src/app/api/suggestions/route.ts +++ b/src/app/api/suggestions/route.ts @@ -1,7 +1,6 @@ import generateSuggestions from '@/lib/agents/suggestions'; import ModelRegistry from '@/lib/models/registry'; import { ModelWithProvider } from '@/lib/models/types'; -import { AIMessage, BaseMessage, HumanMessage } from '@langchain/core/messages'; interface SuggestionsGenerationBody { chatHistory: any[]; diff --git a/src/lib/agents/search/researcher/actions/scrapeURL.ts b/src/lib/agents/search/researcher/actions/scrapeURL.ts index 3d3173e..c702a70 100644 --- a/src/lib/agents/search/researcher/actions/scrapeURL.ts +++ b/src/lib/agents/search/researcher/actions/scrapeURL.ts @@ -15,7 +15,7 @@ Use this tool to scrape and extract content from the provided URLs. This is usef You should only call this tool when the user has specifically requested information from certain web pages, never call this yourself to get extra information without user instruction. For example, if the user says "Please summarize the content of https://example.com/article", you can call this tool with that URL to get the content and then provide the summary or "What does X mean according to https://example.com/page", you can call this tool with that URL to get the content and provide the explanation. -` +`; const scrapeURLAction: ResearchAction = { name: 'scrape_url',