|
@@ -1,26 +1,25 @@
|
|
|
<script lang="ts">
|
|
|
- import { v4 as uuidv4 } from 'uuid';
|
|
|
import { toast } from 'svelte-sonner';
|
|
|
+ import { v4 as uuidv4 } from 'uuid';
|
|
|
|
|
|
- import { onMount, tick, getContext } from 'svelte';
|
|
|
import { goto } from '$app/navigation';
|
|
|
import { page } from '$app/stores';
|
|
|
+ import { getContext, onMount, tick } from 'svelte';
|
|
|
|
|
|
import {
|
|
|
- models,
|
|
|
- modelfiles,
|
|
|
- user,
|
|
|
- settings,
|
|
|
- chats,
|
|
|
- chatId,
|
|
|
- config,
|
|
|
WEBUI_NAME,
|
|
|
tags as _tags,
|
|
|
- showSidebar
|
|
|
+ chatId,
|
|
|
+ chats,
|
|
|
+ config,
|
|
|
+ modelfiles,
|
|
|
+ models,
|
|
|
+ settings,
|
|
|
+ showSidebar,
|
|
|
+ user
|
|
|
} from '$lib/stores';
|
|
|
import { copyToClipboard, splitStream } from '$lib/utils';
|
|
|
|
|
|
- import { generateChatCompletion, cancelOllamaRequest } from '$lib/apis/ollama';
|
|
|
import {
|
|
|
addTagById,
|
|
|
createNewChat,
|
|
@@ -30,18 +29,18 @@
|
|
|
getTagsById,
|
|
|
updateChatById
|
|
|
} from '$lib/apis/chats';
|
|
|
- import { queryCollection, queryDoc } from '$lib/apis/rag';
|
|
|
+ import { cancelOllamaRequest, generateChatCompletion } from '$lib/apis/ollama';
|
|
|
import { generateOpenAIChatCompletion, generateTitle } from '$lib/apis/openai';
|
|
|
+ import { queryCollection, queryDoc } from '$lib/apis/rag';
|
|
|
|
|
|
+ import { queryMemory } from '$lib/apis/memories';
|
|
|
+ import { createOpenAITextStream } from '$lib/apis/streaming';
|
|
|
import MessageInput from '$lib/components/chat/MessageInput.svelte';
|
|
|
import Messages from '$lib/components/chat/Messages.svelte';
|
|
|
import ModelSelector from '$lib/components/chat/ModelSelector.svelte';
|
|
|
import Navbar from '$lib/components/layout/Navbar.svelte';
|
|
|
+ import { LITELLM_API_BASE_URL, OLLAMA_API_BASE_URL, OPENAI_API_BASE_URL, WEBUI_BASE_URL } from '$lib/constants';
|
|
|
import { RAGTemplate } from '$lib/utils/rag';
|
|
|
- import { LITELLM_API_BASE_URL, OLLAMA_API_BASE_URL, OPENAI_API_BASE_URL } from '$lib/constants';
|
|
|
- import { WEBUI_BASE_URL } from '$lib/constants';
|
|
|
- import { createOpenAITextStream } from '$lib/apis/streaming';
|
|
|
- import { queryMemory } from '$lib/apis/memories';
|
|
|
|
|
|
const i18n = getContext('i18n');
|
|
|
|
|
@@ -614,6 +613,7 @@
|
|
|
...messages
|
|
|
]
|
|
|
.filter((message) => message)
|
|
|
+ .filter((message) => message.content != "")
|
|
|
.map((message, idx, arr) => ({
|
|
|
role: message.role,
|
|
|
...((message.files?.filter((file) => file.type === 'image').length > 0 ?? false) &&
|