From 6271ee64ab01862bdb4d3bb1fdab740d6a6569d8 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sun, 7 Jan 2024 03:01:38 -0800 Subject: [PATCH] fix --- src/routes/(app)/c/[id]/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/(app)/c/[id]/+page.svelte b/src/routes/(app)/c/[id]/+page.svelte index 695cd6c9..c2677083 100644 --- a/src/routes/(app)/c/[id]/+page.svelte +++ b/src/routes/(app)/c/[id]/+page.svelte @@ -10,7 +10,7 @@ import { copyToClipboard, splitStream } from '$lib/utils'; import { generateChatCompletion, generateTitle } from '$lib/apis/ollama'; - import { createNewChat, getChatList, updateChatById } from '$lib/apis/chats'; + import { createNewChat, getChatById, getChatList, updateChatById } from '$lib/apis/chats'; import { queryVectorDB } from '$lib/apis/rag'; import { generateOpenAIChatCompletion } from '$lib/apis/openai';