refactor(llm): remove unused import in api.chat.ts

This commit is contained in:
bjc 2024-10-08 17:34:44 -07:00
parent 1d6304a169
commit c744d2ec96

View File

@ -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';