feat(app): lint & beautify

This commit is contained in:
ItzCrazyKns
2025-12-13 22:23:54 +05:30
parent a99702d837
commit 3d1d164f68
2 changed files with 1 additions and 2 deletions

View File

@@ -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[];

View File

@@ -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<typeof schema> = {
name: 'scrape_url',