From 3e03947b1bad4b4b2a7a8c6e265f5a2d83a02dcf Mon Sep 17 00:00:00 2001 From: ItzCrazyKns <95534749+ItzCrazyKns@users.noreply.github.com> Date: Sat, 18 Oct 2025 19:30:01 +0530 Subject: [PATCH] feat(emptyChatInput): add focus mode --- src/app/api/search/route.ts | 2 -- src/components/EmptyChatMessageInput.tsx | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/api/search/route.ts b/src/app/api/search/route.ts index 47b7a50..bc7255f 100644 --- a/src/app/api/search/route.ts +++ b/src/app/api/search/route.ts @@ -1,5 +1,3 @@ -import type { BaseChatModel } from '@langchain/core/language_models/chat_models'; -import type { Embeddings } from '@langchain/core/embeddings'; import { AIMessage, BaseMessage, HumanMessage } from '@langchain/core/messages'; import { MetaSearchAgentType } from '@/lib/search/metaSearchAgent'; import { searchHandlers } from '@/lib/search'; diff --git a/src/components/EmptyChatMessageInput.tsx b/src/components/EmptyChatMessageInput.tsx index e178d7d..6563a25 100644 --- a/src/components/EmptyChatMessageInput.tsx +++ b/src/components/EmptyChatMessageInput.tsx @@ -70,6 +70,7 @@ const EmptyChatMessageInput = () => {