Timothy J. Baek hace 1 año
padre
commit
6271ee64ab
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/routes/(app)/c/[id]/+page.svelte

+ 1 - 1
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';