From c744d2ec965e92daf822fcc1d6c8e294baab7f7a Mon Sep 17 00:00:00 2001 From: bjc Date: Tue, 8 Oct 2024 17:34:44 -0700 Subject: [PATCH] refactor(llm): remove unused import in api.chat.ts --- app/routes/api.chat.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/app/routes/api.chat.ts b/app/routes/api.chat.ts index 959de44..f95b5b9 100644 --- a/app/routes/api.chat.ts +++ b/app/routes/api.chat.ts @@ -1,7 +1,6 @@ import { type ActionFunctionArgs } from '@remix-run/cloudflare'; import { MAX_RESPONSE_SEGMENTS, MAX_TOKENS } from '~/lib/.server/llm/constants'; import { getCurrentLLMType, selectLLM } from '~/lib/.server/llm/llm-selector'; -// import { CONTINUE_PROMPT } from '~/lib/.server/llm/prompts'; import { streamText } from '~/lib/.server/llm/stream-text'; import type { Messages, StreamingOptions } from '~/lib/.server/llm/llm-interface'; import SwitchableStream from '~/lib/.server/llm/switchable-stream';