Merge pull request #8286 from srajangarg/sg

feat: functionality to clone shared chats
This commit is contained in:
Timothy Jaeryang Baek 2025-01-05 00:45:55 -08:00 committed by GitHub
commit 3886c82ed0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 111 additions and 17 deletions

View File

@ -469,6 +469,8 @@ class ChatTable:
def get_chat_by_share_id(self, id: str) -> Optional[ChatModel]: def get_chat_by_share_id(self, id: str) -> Optional[ChatModel]:
try: try:
with get_db() as db: with get_db() as db:
# it is possible that the shared link was deleted. hence,
# we check if the chat is still shared by checkng if a chat with the share_id exists
chat = db.query(Chat).filter_by(share_id=id).first() chat = db.query(Chat).filter_by(share_id=id).first()
if chat: if chat:

View File

@ -463,6 +463,30 @@ async def clone_chat_by_id(id: str, user=Depends(get_verified_user)):
) )
############################
# CloneSharedChatById
############################
@router.post("/{id}/clone/shared", response_model=Optional[ChatResponse])
async def clone_shared_chat_by_id(id: str, user=Depends(get_verified_user)):
chat = Chats.get_chat_by_share_id(id)
if chat:
updated_chat = {
**chat.chat,
"originalChatId": chat.id,
"branchPointMessageId": chat.chat["history"]["currentId"],
"title": f"Clone of {chat.title}",
}
chat = Chats.insert_new_chat(user.id, ChatForm(**{"chat": updated_chat}))
return ChatResponse(**chat.model_dump())
else:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED, detail=ERROR_MESSAGES.DEFAULT()
)
############################ ############################
# ArchiveChat # ArchiveChat
############################ ############################

View File

@ -618,6 +618,44 @@ export const cloneChatById = async (token: string, id: string) => {
return res; return res;
}; };
export const cloneSharedChatById = async (token: string, id: string) => {
let error = null;
const res = await fetch(`${WEBUI_API_BASE_URL}/chats/${id}/clone/shared`, {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
...(token && { authorization: `Bearer ${token}` })
}
})
.then(async (res) => {
if (!res.ok) throw await res.json();
return res.json();
})
.then((json) => {
return json;
})
.catch((err) => {
error = err;
if ('detail' in err) {
error = err.detail;
} else {
error = err;
}
console.log(err);
return null;
});
if (error) {
throw error;
}
return res;
};
export const shareChatById = async (token: string, id: string) => { export const shareChatById = async (token: string, id: string) => {
let error = null; let error = null;

View File

@ -16,6 +16,8 @@
const i18n = getContext('i18n'); const i18n = getContext('i18n');
export let className = 'h-full flex pt-8';
export let chatId = ''; export let chatId = '';
export let user = $_user; export let user = $_user;
@ -333,7 +335,7 @@
}; };
</script> </script>
<div class="h-full flex pt-8"> <div class={className}>
{#if Object.keys(history?.messages ?? {}).length == 0} {#if Object.keys(history?.messages ?? {}).length == 0}
<ChatPlaceholder <ChatPlaceholder
modelIds={selectedModels} modelIds={selectedModels}

View File

@ -8,13 +8,14 @@
import { settings, chatId, WEBUI_NAME, models } from '$lib/stores'; import { settings, chatId, WEBUI_NAME, models } from '$lib/stores';
import { convertMessagesToHistory, createMessagesList } from '$lib/utils'; import { convertMessagesToHistory, createMessagesList } from '$lib/utils';
import { getChatByShareId } from '$lib/apis/chats'; import { getChatByShareId, cloneSharedChatById } from '$lib/apis/chats';
import Messages from '$lib/components/chat/Messages.svelte'; import Messages from '$lib/components/chat/Messages.svelte';
import Navbar from '$lib/components/layout/Navbar.svelte'; import Navbar from '$lib/components/layout/Navbar.svelte';
import { getUserById } from '$lib/apis/users'; import { getUserById } from '$lib/apis/users';
import { error } from '@sveltejs/kit';
import { getModels } from '$lib/apis'; import { getModels } from '$lib/apis';
import { toast } from 'svelte-sonner';
const i18n = getContext('i18n'); const i18n = getContext('i18n');
@ -100,6 +101,19 @@
} }
} }
}; };
const cloneSharedChat = async () => {
if (!chat) return;
const res = await cloneSharedChatById(localStorage.token, chat.id).catch((error) => {
toast.error(error);
return null;
});
if (res) {
goto(`/c/${res.id}`);
}
};
</script> </script>
<svelte:head> <svelte:head>
@ -114,25 +128,26 @@
<div <div
class="min-h-screen max-h-screen w-full flex flex-col text-gray-700 dark:text-gray-100 bg-white dark:bg-gray-900" class="min-h-screen max-h-screen w-full flex flex-col text-gray-700 dark:text-gray-100 bg-white dark:bg-gray-900"
> >
<div class="flex flex-col flex-auto justify-center py-8"> <div class="flex flex-col flex-auto justify-center relative">
<div class="px-3 w-full max-w-5xl mx-auto"> <div class=" flex flex-col w-full flex-auto overflow-auto h-0" id="messages-container">
<div> <div class="pt-5 px-2 w-full max-w-5xl mx-auto">
<div class=" text-3xl font-semibold line-clamp-1"> <div class="px-3">
{title} <div class=" text-2xl font-semibold line-clamp-1">
</div> {title}
</div>
<div class=" mt-1 text-gray-400"> <div class="flex text-sm justify-between items-center mt-1">
{dayjs(chat.chat.timestamp).format($i18n.t('MMMM DD, YYYY'))} <div class="text-gray-400">
{dayjs(chat.chat.timestamp).format($i18n.t('MMMM DD, YYYY'))}
</div>
</div>
</div> </div>
</div> </div>
<hr class="border-gray-50 dark:border-gray-850 mt-6 mb-2" /> <div class=" h-full w-full flex flex-col py-2">
</div> <div class="">
<div class=" flex flex-col w-full flex-auto overflow-auto h-0" id="messages-container">
<div class=" h-full w-full flex flex-col py-4">
<div class="py-2">
<Messages <Messages
className="h-full flex pt-4 pb-8"
{user} {user}
chatId={$chatId} chatId={$chatId}
readOnly={true} readOnly={true}
@ -149,6 +164,19 @@
</div> </div>
</div> </div>
</div> </div>
<div
class="absolute bottom-0 right-0 left-0 flex justify-center w-full bg-gradient-to-b from-transparent to-gray-900"
>
<div class="pb-5">
<button
class="px-4 py-2 text-sm font-medium bg-black hover:bg-gray-900 text-white dark:bg-white dark:text-black dark:hover:bg-gray-100 transition rounded-full"
on:click={cloneSharedChat}
>
{$i18n.t('Clone Chat')}
</button>
</div>
</div>
</div> </div>
</div> </div>
{/if} {/if}