123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- <script lang="ts">
- import { toast } from 'svelte-sonner';
- import DOMPurify from 'dompurify';
- import { marked } from 'marked';
- import { getContext, tick, onDestroy } from 'svelte';
- const i18n = getContext('i18n');
- import { chatCompletion } from '$lib/apis/openai';
- import ChatBubble from '$lib/components/icons/ChatBubble.svelte';
- import LightBulb from '$lib/components/icons/LightBulb.svelte';
- import Markdown from '../Messages/Markdown.svelte';
- import Skeleton from '../Messages/Skeleton.svelte';
- export let id = '';
- export let model = null;
- export let messages = [];
- export let onAdd = (e) => {};
- let floatingInput = false;
- let selectedAction = null;
- let selectedText = '';
- let floatingInputValue = '';
- let content = '';
- let responseContent = null;
- let responseDone = false;
- let controller = null;
- const autoScroll = async () => {
- const responseContainer = document.getElementById('response-container');
- if (responseContainer) {
- // Scroll to bottom only if the scroll is at the bottom give 50px buffer
- if (
- responseContainer.scrollHeight - responseContainer.clientHeight <=
- responseContainer.scrollTop + 50
- ) {
- responseContainer.scrollTop = responseContainer.scrollHeight;
- }
- }
- };
- const ACTIONS = [
- {
- id: 'ask',
- label: $i18n.t('Ask'),
- icon: ChatBubble,
- input: true,
- prompt: `{{SELECTED_CONTENT}}\n\n\n{{INPUT_CONTENT}}`
- },
- {
- id: 'explain',
- label: $i18n.t('Explain'),
- icon: LightBulb,
- prompt: `{{SELECTED_CONTENT}}\n\n\nExplain`
- }
- ];
- const actionHandler = async (actionId) => {
- if (!model) {
- toast.error('Model not selected');
- return;
- }
- let selectedContent = selectedText
- .split('\n')
- .map((line) => `> ${line}`)
- .join('\n');
- let selectedAction = ACTIONS.find((action) => action.id === actionId);
- if (!selectedAction) {
- toast.error('Action not found');
- return;
- }
- let prompt = selectedAction?.prompt ?? '';
- if (selectedAction.input) {
- prompt = prompt.replace('{{INPUT_CONTENT}}', floatingInputValue);
- floatingInputValue = '';
- }
- prompt = prompt.replace('{{CONTENT}}', selectedText);
- prompt = prompt.replace('{{SELECTED_CONTENT}}', selectedContent);
- content = prompt;
- responseContent = '';
- let res;
- [res, controller] = await chatCompletion(localStorage.token, {
- model: model,
- messages: [
- ...messages,
- {
- role: 'user',
- content: content
- }
- ].map((message) => ({
- role: message.role,
- content: message.content
- })),
- stream: true // Enable streaming
- });
- if (res && res.ok) {
- const reader = res.body.getReader();
- const decoder = new TextDecoder();
- const processStream = async () => {
- while (true) {
- // Read data chunks from the response stream
- const { done, value } = await reader.read();
- if (done) {
- break;
- }
- // Decode the received chunk
- const chunk = decoder.decode(value, { stream: true });
- // Process lines within the chunk
- const lines = chunk.split('\n').filter((line) => line.trim() !== '');
- for (const line of lines) {
- if (line.startsWith('data: ')) {
- if (line.startsWith('data: [DONE]')) {
- responseDone = true;
- await tick();
- autoScroll();
- continue;
- } else {
- // Parse the JSON chunk
- try {
- const data = JSON.parse(line.slice(6));
- // Append the `content` field from the "choices" object
- if (data.choices && data.choices[0]?.delta?.content) {
- responseContent += data.choices[0].delta.content;
- autoScroll();
- }
- } catch (e) {
- console.error(e);
- }
- }
- }
- }
- }
- };
- // Process the stream in the background
- try {
- await processStream();
- } catch (e) {
- if (e.name !== 'AbortError') {
- console.error(e);
- }
- }
- } else {
- toast.error('An error occurred while fetching the explanation');
- }
- };
- const addHandler = async () => {
- const messages = [
- {
- role: 'user',
- content: content
- },
- {
- role: 'assistant',
- content: responseContent
- }
- ];
- onAdd({
- modelId: model,
- parentId: id,
- messages: messages
- });
- };
- export const closeHandler = () => {
- if (controller) {
- controller.abort();
- }
- selectedAction = null;
- selectedText = '';
- responseContent = null;
- responseDone = false;
- floatingInput = false;
- floatingInputValue = '';
- };
- onDestroy(() => {
- if (controller) {
- controller.abort();
- }
- });
- </script>
- <div
- id={`floating-buttons-${id}`}
- class="absolute rounded-lg mt-1 text-xs z-9999"
- style="display: none"
- >
- {#if responseContent === null}
- {#if !floatingInput}
- <div
- class="flex flex-row gap-0.5 shrink-0 p-1 bg-white dark:bg-gray-850 dark:text-gray-100 text-medium rounded-lg shadow-xl"
- >
- {#each ACTIONS as action}
- <button
- class="px-1 hover:bg-gray-50 dark:hover:bg-gray-800 rounded-sm flex items-center gap-1 min-w-fit"
- on:click={async () => {
- selectedText = window.getSelection().toString();
- selectedAction = action;
- if (action.input) {
- floatingInput = true;
- floatingInputValue = '';
- await tick();
- setTimeout(() => {
- const input = document.getElementById('floating-message-input');
- if (input) {
- input.focus();
- }
- }, 0);
- } else {
- actionHandler(action.id);
- }
- }}
- >
- <svelte:component this={action.icon} className="size-3 shrink-0" />
- <div class="shrink-0">{action.label}</div>
- </button>
- {/each}
- </div>
- {:else}
- <div
- class="py-1 flex dark:text-gray-100 bg-gray-50 dark:bg-gray-800 border border-gray-100 dark:border-gray-850 w-72 rounded-full shadow-xl"
- >
- <input
- type="text"
- id="floating-message-input"
- class="ml-5 bg-transparent outline-hidden w-full flex-1 text-sm"
- placeholder={$i18n.t('Ask a question')}
- bind:value={floatingInputValue}
- on:keydown={(e) => {
- if (e.key === 'Enter') {
- actionHandler(selectedAction?.id);
- }
- }}
- />
- <div class="ml-1 mr-2">
- <button
- class="{floatingInputValue !== ''
- ? 'bg-black text-white hover:bg-gray-900 dark:bg-white dark:text-black dark:hover:bg-gray-100 '
- : 'text-white bg-gray-200 dark:text-gray-900 dark:bg-gray-700 disabled'} transition rounded-full p-1.5 m-0.5 self-center"
- on:click={() => {
- actionHandler(selectedAction?.id);
- }}
- >
- <svg
- xmlns="http://www.w3.org/2000/svg"
- viewBox="0 0 16 16"
- fill="currentColor"
- class="size-4"
- >
- <path
- fill-rule="evenodd"
- d="M8 14a.75.75 0 0 1-.75-.75V4.56L4.03 7.78a.75.75 0 0 1-1.06-1.06l4.5-4.5a.75.75 0 0 1 1.06 0l4.5 4.5a.75.75 0 0 1-1.06 1.06L8.75 4.56v8.69A.75.75 0 0 1 8 14Z"
- clip-rule="evenodd"
- />
- </svg>
- </button>
- </div>
- </div>
- {/if}
- {:else}
- <div class="bg-white dark:bg-gray-850 dark:text-gray-100 rounded-xl shadow-xl w-80 max-w-full">
- <div
- class="bg-gray-50/50 dark:bg-gray-800 dark:text-gray-100 text-medium rounded-xl px-3.5 py-3 w-full"
- >
- <div class="font-medium">
- <Markdown id={`${id}-float-prompt`} {content} />
- </div>
- </div>
- <div
- class="bg-white dark:bg-gray-850 dark:text-gray-100 text-medium rounded-xl px-3.5 py-3 w-full"
- >
- <div class=" max-h-80 overflow-y-auto w-full markdown-prose-xs" id="response-container">
- {#if !responseContent || responseContent?.trim() === ''}
- <Skeleton size="sm" />
- {:else}
- <Markdown id={`${id}-float-response`} content={responseContent} />
- {/if}
- {#if responseDone}
- <div class="flex justify-end pt-3 text-sm font-medium">
- <button
- class="px-3.5 py-1.5 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={addHandler}
- >
- {$i18n.t('Add')}
- </button>
- </div>
- {/if}
- </div>
- </div>
- </div>
- {/if}
- </div>
|