diff --git a/backend/apps/images/main.py b/backend/apps/images/main.py index 06d0bcce8dc570e88c3c18fbf5539cb3db39a569..4239f3f457197f105277e974914fbd1ac9ae1d80 100644 --- a/backend/apps/images/main.py +++ b/backend/apps/images/main.py @@ -150,10 +150,10 @@ async def update_engine_url( else: url = form_data.AUTOMATIC1111_BASE_URL.strip("/") try: - r = requests.head(url) + r = requests.head(url) app.state.config.AUTOMATIC1111_BASE_URL = url except Exception as e: - raise HTTPException(status_code=400, detail="Invalid URL provided.") + raise HTTPException(status_code=400, detail=ERROR_MESSAGES.DEFAULT(e)) if form_data.COMFYUI_BASE_URL == None: app.state.config.COMFYUI_BASE_URL = COMFYUI_BASE_URL @@ -514,7 +514,7 @@ async def image_generations( data = ImageGenerationPayload(**data) - res = await comfyui_generate_image( + res = comfyui_generate_image( app.state.config.MODEL, data, user.id, diff --git a/backend/apps/images/utils/comfyui.py b/backend/apps/images/utils/comfyui.py index f82076809e0b9a49365d88e0459f47b9ad1a02cb..6c37f0c49771b3f15c2f37532fc9f537dc9e10e1 100644 --- a/backend/apps/images/utils/comfyui.py +++ b/backend/apps/images/utils/comfyui.py @@ -1,4 +1,3 @@ -import asyncio import websocket # NOTE: websocket-client (https://github.com/websocket-client/websocket-client) import uuid import json @@ -329,7 +328,7 @@ class ImageGenerationPayload(BaseModel): flux_fp8_clip: Optional[bool] = None -async def comfyui_generate_image( +def comfyui_generate_image( model: str, payload: ImageGenerationPayload, client_id, base_url ): ws_url = base_url.replace("http://", "ws://").replace("https://", "wss://") @@ -398,7 +397,7 @@ async def comfyui_generate_image( return None try: - images = await asyncio.to_thread(get_images, ws, comfyui_prompt, client_id, base_url) + images = get_images(ws, comfyui_prompt, client_id, base_url) except Exception as e: log.exception(f"Error while receiving images: {e}") images = None diff --git a/backend/apps/webui/main.py b/backend/apps/webui/main.py index 3c387842d8c0867a18b197643885149e094bfb29..a0b9f50085fd39a5743ee1dcf0ddcbcbe9b57b47 100644 --- a/backend/apps/webui/main.py +++ b/backend/apps/webui/main.py @@ -46,7 +46,6 @@ from config import ( AppConfig, OAUTH_USERNAME_CLAIM, OAUTH_PICTURE_CLAIM, - OAUTH_EMAIL_CLAIM, ) from apps.socket.main import get_event_call, get_event_emitter @@ -85,7 +84,6 @@ app.state.config.ENABLE_COMMUNITY_SHARING = ENABLE_COMMUNITY_SHARING app.state.config.OAUTH_USERNAME_CLAIM = OAUTH_USERNAME_CLAIM app.state.config.OAUTH_PICTURE_CLAIM = OAUTH_PICTURE_CLAIM -app.state.config.OAUTH_EMAIL_CLAIM = OAUTH_EMAIL_CLAIM app.state.MODELS = {} app.state.TOOLS = {} diff --git a/backend/config.py b/backend/config.py index 7d6c0bd7c99f31241c6e72fcdad88fb7ab8f8f71..30a970012b2f27a576e4a4f5ce8bfca00fb6f08e 100644 --- a/backend/config.py +++ b/backend/config.py @@ -433,12 +433,6 @@ OAUTH_PICTURE_CLAIM = PersistentConfig( os.environ.get("OAUTH_PICTURE_CLAIM", "picture"), ) -OAUTH_EMAIL_CLAIM = PersistentConfig( - "OAUTH_EMAIL_CLAIM", - "oauth.oidc.email_claim", - os.environ.get("OAUTH_EMAIL_CLAIM", "email"), -) - def load_oauth_providers(): OAUTH_PROVIDERS.clear() diff --git a/backend/main.py b/backend/main.py index 6e4265a5ca9b77f62e7b66e1267fb0dabeaab21f..d7bff888e2c024658786922d16ba9b20fa85b7a5 100644 --- a/backend/main.py +++ b/backend/main.py @@ -2158,8 +2158,7 @@ async def oauth_callback(provider: str, request: Request, response: Response): log.warning(f"OAuth callback failed, sub is missing: {user_data}") raise HTTPException(400, detail=ERROR_MESSAGES.INVALID_CRED) provider_sub = f"{provider}@{sub}" - email_claim = webui_app.state.config.OAUTH_EMAIL_CLAIM - email = user_data.get(email_claim, "").lower() + email = user_data.get("email", "").lower() # We currently mandate that email addresses are provided if not email: log.warning(f"OAuth callback failed, email is missing: {user_data}") diff --git a/package-lock.json b/package-lock.json index 2006a3fd30123eb954d5ee729134d1ae30403e91..b7e714ed78c391043a5c290a24a5b0434fe54117 100644 --- a/package-lock.json +++ b/package-lock.json @@ -29,7 +29,6 @@ "js-sha256": "^0.10.1", "katex": "^0.16.9", "marked": "^9.1.0", - "marked-katex-extension": "^5.1.1", "mermaid": "^10.9.1", "pyodide": "^0.26.1", "socket.io-client": "^4.2.0", @@ -1545,11 +1544,6 @@ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", "dev": true }, - "node_modules/@types/katex": { - "version": "0.16.7", - "resolved": "https://registry.npmjs.org/@types/katex/-/katex-0.16.7.tgz", - "integrity": "sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==" - }, "node_modules/@types/mdast": { "version": "3.0.15", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", @@ -6042,18 +6036,6 @@ "node": ">= 16" } }, - "node_modules/marked-katex-extension": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/marked-katex-extension/-/marked-katex-extension-5.1.1.tgz", - "integrity": "sha512-piquiCyZpZ1aiocoJlJkRXr+hkk5UI4xw9GhRZiIAAgvX5rhzUDSJ0seup1JcsgueC8MLNDuqe5cRcAzkFE42Q==", - "dependencies": { - "@types/katex": "^0.16.7" - }, - "peerDependencies": { - "katex": ">=0.16 <0.17", - "marked": ">=4 <15" - } - }, "node_modules/matcher-collection": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/matcher-collection/-/matcher-collection-2.0.1.tgz", diff --git a/package.json b/package.json index bd2b173bf89cffa0ef0c6999307af97b05cab418..0c7a8518ac618d1ba572452a0c8ca4c79fbb2d8f 100644 --- a/package.json +++ b/package.json @@ -70,7 +70,6 @@ "js-sha256": "^0.10.1", "katex": "^0.16.9", "marked": "^9.1.0", - "marked-katex-extension": "^5.1.1", "mermaid": "^10.9.1", "pyodide": "^0.26.1", "socket.io-client": "^4.2.0", diff --git a/src/lib/components/chat/Messages/CodeBlock.svelte b/src/lib/components/chat/Messages/CodeBlock.svelte index 5fa4299eaf7bdbdb4fbf22481c82c34a717844f2..daa8a8cd06ae75e9bf14e31249aedcb27f5fcbf6 100644 --- a/src/lib/components/chat/Messages/CodeBlock.svelte +++ b/src/lib/components/chat/Messages/CodeBlock.svelte @@ -1,15 +1,12 @@ @@ -28,21 +25,14 @@ {:else if token.type === 'codespan'} - {revertSanitizedResponseContent(token.raw)} + {unescapeHtml(token.text.replaceAll('&', '&'))} {:else if token.type === 'br'}
{:else if token.type === 'del'} - {:else if token.type === 'inlineKatex'} - {#if token.text} - - {/if} {:else if token.type === 'text'} - {token.raw} + {unescapeHtml(token.text)} {/if} {/each} diff --git a/src/lib/components/chat/Messages/MarkdownTokens.svelte b/src/lib/components/chat/Messages/MarkdownTokens.svelte index 089a0847ac2870d940ac4386bf82ba282e88c54b..33b8984854a31acd4a3452bba64e7c9683756cf4 100644 --- a/src/lib/components/chat/Messages/MarkdownTokens.svelte +++ b/src/lib/components/chat/Messages/MarkdownTokens.svelte @@ -1,124 +1,137 @@ - -{#each tokens as token, tokenIdx} - {#if token.type === 'hr'} -
- {:else if token.type === 'heading'} - - - - {:else if token.type === 'code'} - - {:else if token.type === 'table'} - - - - {#each token.header as header, headerIdx} - - {/each} - - - - {#each token.rows as row, rowIdx} - - {#each row ?? [] as cell, cellIdx} - - {/each} - - {/each} - -
- -
- -
- {:else if token.type === 'blockquote'} -
- -
- {:else if token.type === 'list'} - {#if token.ordered} -
    - {#each token.items as item, itemIdx} -
  1. - -
  2. - {/each} -
+
+ {#each tokens as token, tokenIdx (`${id}-${tokenIdx}`)} + {#if token.type === 'code'} + {#if token.lang === 'mermaid'} +
{revertSanitizedResponseContent(token.text)}
+ {:else} + + {/if} {:else} -
    - {#each token.items as item, itemIdx} -
  • - -
  • - {/each} -
- {/if} - {:else if token.type === 'html'} - {@html token.text} - {:else if token.type === 'paragraph'} -

- -

- {:else if token.type === 'text'} - {#if top} -

- {#if token.tokens} - - {:else} - {unescapeHtml(token.text)} - {/if} -

- {:else if token.tokens} - - {:else} - {unescapeHtml(token.text)} - {/if} - {:else if token.type === 'inlineKatex'} - {#if token.text} - + {@html marked.parse(token.raw, { + ...defaults, + gfm: true, + breaks: true, + renderer + })} {/if} - {:else if token.type === 'space'} - {''} - {:else} - {console.log('Unknown token', token)} - {/if} -{/each} + {/each} +
diff --git a/src/lib/components/chat/Messages/ResponseMessage.svelte b/src/lib/components/chat/Messages/ResponseMessage.svelte index 9621d67b0bf89fce58fed44d972e80ccd51257c1..fdc846205b72bc0cf1607ba5d35699e7bbf74c41 100644 --- a/src/lib/components/chat/Messages/ResponseMessage.svelte +++ b/src/lib/components/chat/Messages/ResponseMessage.svelte @@ -4,6 +4,7 @@ import { marked } from 'marked'; import tippy from 'tippy.js'; import auto_render from 'katex/dist/contrib/auto-render.mjs'; + import 'katex/dist/katex.min.css'; import mermaid from 'mermaid'; import { fade } from 'svelte/transition'; @@ -78,27 +79,77 @@ let tokens; - import 'katex/dist/katex.min.css'; - - import markedKatex from '$lib/utils/katex-extension'; - const options = { - throwOnError: false - }; - - marked.use(markedKatex(options)); - $: (async () => { if (message?.content) { tokens = marked.lexer( replaceTokens(sanitizeResponseContent(message?.content), model?.name, $user?.name) ); + // console.log(message?.content, tokens); } })(); - $: if (message?.done ?? false) { - renderLatex(); + $: if (message) { + renderStyling(); } + const renderStyling = async () => { + await tick(); + + if (tooltipInstance) { + tooltipInstance[0]?.destroy(); + } + + renderLatex(); + + if (message.info) { + let tooltipContent = ''; + if (message.info.openai) { + tooltipContent = `prompt_tokens: ${message.info.prompt_tokens ?? 'N/A'}
+ completion_tokens: ${message.info.completion_tokens ?? 'N/A'}
+ total_tokens: ${message.info.total_tokens ?? 'N/A'}`; + } else { + tooltipContent = `response_token/s: ${ + `${ + Math.round( + ((message.info.eval_count ?? 0) / (message.info.eval_duration / 1000000000)) * 100 + ) / 100 + } tokens` ?? 'N/A' + }
+ prompt_token/s: ${ + Math.round( + ((message.info.prompt_eval_count ?? 0) / + (message.info.prompt_eval_duration / 1000000000)) * + 100 + ) / 100 ?? 'N/A' + } tokens
+ total_duration: ${ + Math.round(((message.info.total_duration ?? 0) / 1000000) * 100) / 100 ?? + 'N/A' + }ms
+ load_duration: ${ + Math.round(((message.info.load_duration ?? 0) / 1000000) * 100) / 100 ?? 'N/A' + }ms
+ prompt_eval_count: ${message.info.prompt_eval_count ?? 'N/A'}
+ prompt_eval_duration: ${ + Math.round(((message.info.prompt_eval_duration ?? 0) / 1000000) * 100) / + 100 ?? 'N/A' + }ms
+ eval_count: ${message.info.eval_count ?? 'N/A'}
+ eval_duration: ${ + Math.round(((message.info.eval_duration ?? 0) / 1000000) * 100) / 100 ?? 'N/A' + }ms
+ approximate_total: ${approximateToHumanReadable(message.info.total_duration)}`; + } + tooltipInstance = tippy(`#info-${message.id}`, { + content: `${tooltipContent}`, + allowHTML: true, + theme: 'dark', + arrow: false, + offset: [0, 4] + }); + } + }; + const renderLatex = () => { let chatMessageElements = document .getElementById(`message-${message.id}`) @@ -279,14 +330,14 @@ editedContent = ''; await tick(); - renderLatex(); + renderStyling(); }; const cancelEditMessage = async () => { edit = false; editedContent = ''; await tick(); - renderLatex(); + renderStyling(); }; const generateImage = async (message) => { @@ -311,7 +362,7 @@ $: if (!edit) { (async () => { await tick(); - renderLatex(); + renderStyling(); await mermaid.run({ querySelector: '.mermaid' @@ -321,7 +372,7 @@ onMount(async () => { await tick(); - renderLatex(); + renderStyling(); await mermaid.run({ querySelector: '.mermaid' @@ -369,7 +420,7 @@ {/if}
{#if (message?.statusHistory ?? [...(message?.status ? [message?.status] : [])]).length > 0} @@ -790,71 +841,31 @@ {/if} {#if message.info} - - completion_tokens: ${message.info.completion_tokens ?? 'N/A'}
- total_tokens: ${message.info.total_tokens ?? 'N/A'}` - : `response_token/s: ${ - `${ - Math.round( - ((message.info.eval_count ?? 0) / - (message.info.eval_duration / 1000000000)) * - 100 - ) / 100 - } tokens` ?? 'N/A' - }
- prompt_token/s: ${ - Math.round( - ((message.info.prompt_eval_count ?? 0) / - (message.info.prompt_eval_duration / 1000000000)) * - 100 - ) / 100 ?? 'N/A' - } tokens
- total_duration: ${ - Math.round(((message.info.total_duration ?? 0) / 1000000) * 100) / 100 ?? 'N/A' - }ms
- load_duration: ${ - Math.round(((message.info.load_duration ?? 0) / 1000000) * 100) / 100 ?? 'N/A' - }ms
- prompt_eval_count: ${message.info.prompt_eval_count ?? 'N/A'}
- prompt_eval_duration: ${ - Math.round(((message.info.prompt_eval_duration ?? 0) / 1000000) * 100) / 100 ?? - 'N/A' - }ms
- eval_count: ${message.info.eval_count ?? 'N/A'}
- eval_duration: ${ - Math.round(((message.info.eval_duration ?? 0) / 1000000) * 100) / 100 ?? 'N/A' - }ms
- approximate_total: ${approximateToHumanReadable(message.info.total_duration)}`} - placement="top" - > - - - + + +
{/if} diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json index 281f7fd186b0fc5733e8f672ea56447d54cb3835..449131c65e5153e74d40b73d38bd3da841628333 100644 --- a/src/lib/i18n/locales/ar-BH/translation.json +++ b/src/lib/i18n/locales/ar-BH/translation.json @@ -134,10 +134,8 @@ "Continue Response": "متابعة الرد", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "تم نسخ عنوان URL للدردشة المشتركة إلى الحافظة", "Copy": "نسخ", - "Copy Code": "", "Copy last code block": "انسخ كتلة التعليمات البرمجية الأخيرة", "Copy last response": "انسخ الرد الأخير", "Copy Link": "أنسخ الرابط", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "من اليمين إلى اليسار", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "حفظ", diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json index 3daf4acabbaf0d61cc039d5f3f995c42b1f6b894..76d79d96144db2c92d8603d4816109e87620413d 100644 --- a/src/lib/i18n/locales/bg-BG/translation.json +++ b/src/lib/i18n/locales/bg-BG/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Продължи отговора", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "Копирана е връзката за чат!", "Copy": "Копирай", - "Copy Code": "", "Copy last code block": "Копиране на последен код блок", "Copy last response": "Копиране на последен отговор", "Copy Link": "Копиране на връзка", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "Запис", diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json index 4f3bcb566242b15aa5849d95c51eb56ef39bb9be..4a42d872c5c25bb40fe5fede29bcff00249087f4 100644 --- a/src/lib/i18n/locales/bn-BD/translation.json +++ b/src/lib/i18n/locales/bn-BD/translation.json @@ -134,10 +134,8 @@ "Continue Response": "যাচাই করুন", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "শেয়ারকৃত কথা-ব্যবহারের URL ক্লিপবোর্ডে কপি করা হয়েছে!", "Copy": "অনুলিপি", - "Copy Code": "", "Copy last code block": "সর্বশেষ কোড ব্লক কপি করুন", "Copy last response": "সর্বশেষ রেসপন্স কপি করুন", "Copy Link": "লিংক কপি করুন", @@ -501,7 +499,6 @@ "Rosé Pine": "রোজ পাইন", "Rosé Pine Dawn": "ভোরের রোজ পাইন", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "সংরক্ষণ", diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json index 31416b13653bddec54180f730fae401072089ed3..98aa48cd5883bd54552871defd917df0d8001812 100644 --- a/src/lib/i18n/locales/ca-ES/translation.json +++ b/src/lib/i18n/locales/ca-ES/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Continuar la resposta", "Continue with {{provider}}": "Continuar amb {{provider}}", "Controls": "Controls", - "Copied": "", "Copied shared chat URL to clipboard!": "S'ha copiat l'URL compartida al porta-retalls!", "Copy": "Copiar", - "Copy Code": "", "Copy last code block": "Copiar l'últim bloc de codi", "Copy last response": "Copiar l'última resposta", "Copy Link": "Copiar l'enllaç", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Albada Rosé Pine", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "Executa Llama 2, Code Llama, i altres models. Personalitza i crea els teus propis models.", "Running": "S'està executant", "Save": "Desar", diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json index 2e9464bb4a6c101b90c675085725349798978190..644354f24b4117751554ba826f0f3de6c6daff2a 100644 --- a/src/lib/i18n/locales/ceb-PH/translation.json +++ b/src/lib/i18n/locales/ceb-PH/translation.json @@ -134,10 +134,8 @@ "Continue Response": "", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "", "Copy": "", - "Copy Code": "", "Copy last code block": "Kopyaha ang katapusang bloke sa code", "Copy last response": "Kopyaha ang kataposang tubag", "Copy Link": "", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Aube Pine Rosé", "RTL": "", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "Tipigi", diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json index f7968d5baa8985e3fe50d47465108f52e4890680..2cca4158c8e352980b998dc3bacacfa37003af31 100644 --- a/src/lib/i18n/locales/de-DE/translation.json +++ b/src/lib/i18n/locales/de-DE/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Antwort fortsetzen", "Continue with {{provider}}": "Mit {{provider}} fortfahren", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "Freigabelink in die Zwischenablage kopiert!", "Copy": "Kopieren", - "Copy Code": "", "Copy last code block": "Letzten Codeblock kopieren", "Copy last response": "Letzte Antwort kopieren", "Copy Link": "Link kopieren", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "Läuft", "Save": "Speichern", diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json index 43ef3661ce136e637fc8192a7086ff602d673da6..8ad4a3fde1b57e199ecf654cb0273f71fe6cce2f 100644 --- a/src/lib/i18n/locales/dg-DG/translation.json +++ b/src/lib/i18n/locales/dg-DG/translation.json @@ -134,10 +134,8 @@ "Continue Response": "", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "", "Copy": "", - "Copy Code": "", "Copy last code block": "Copy last code block", "Copy last response": "Copy last response", "Copy Link": "", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "Save much wow", diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json index 107f83c15d4b86c5444102828057b1a7945b7f2f..817b79b407bf17b80ca65b073561bce40d0a4dcf 100644 --- a/src/lib/i18n/locales/en-GB/translation.json +++ b/src/lib/i18n/locales/en-GB/translation.json @@ -134,10 +134,8 @@ "Continue Response": "", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "", "Copy": "", - "Copy Code": "", "Copy last code block": "", "Copy last response": "", "Copy Link": "", @@ -501,7 +499,6 @@ "Rosé Pine": "", "Rosé Pine Dawn": "", "RTL": "", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "", diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json index 107f83c15d4b86c5444102828057b1a7945b7f2f..817b79b407bf17b80ca65b073561bce40d0a4dcf 100644 --- a/src/lib/i18n/locales/en-US/translation.json +++ b/src/lib/i18n/locales/en-US/translation.json @@ -134,10 +134,8 @@ "Continue Response": "", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "", "Copy": "", - "Copy Code": "", "Copy last code block": "", "Copy last response": "", "Copy Link": "", @@ -501,7 +499,6 @@ "Rosé Pine": "", "Rosé Pine Dawn": "", "RTL": "", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "", diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json index 4611c655290ee2e2c8edd3f276dbaebbb216dd9c..90ba1c5a55dbc2659d3978302a82a08bc5b036f3 100644 --- a/src/lib/i18n/locales/es-ES/translation.json +++ b/src/lib/i18n/locales/es-ES/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Continuar Respuesta", "Continue with {{provider}}": "Continuar con {{provider}}", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "¡URL de chat compartido copiado al portapapeles!", "Copy": "Copiar", - "Copy Code": "", "Copy last code block": "Copia el último bloque de código", "Copy last response": "Copia la última respuesta", "Copy Link": "Copiar enlace", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "Ejecutando", "Save": "Guardar", diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json index a45c1f7388da866d196c7f1c4e9d642ae039302d..789acf83a4cf0b317d43b6e41cea3e95ee51a91f 100644 --- a/src/lib/i18n/locales/fa-IR/translation.json +++ b/src/lib/i18n/locales/fa-IR/translation.json @@ -134,10 +134,8 @@ "Continue Response": "ادامه پاسخ", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "URL چت به کلیپ بورد کپی شد!", "Copy": "کپی", - "Copy Code": "", "Copy last code block": "کپی آخرین بلوک کد", "Copy last response": "کپی آخرین پاسخ", "Copy Link": "کپی لینک", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "ذخیره", diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json index c13384179fbc3f185a31ab09ec617170d91a35f2..45741e4772a0a5134732878bbb5dc032b8638ae8 100644 --- a/src/lib/i18n/locales/fi-FI/translation.json +++ b/src/lib/i18n/locales/fi-FI/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Jatka vastausta", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "Jaettu keskustelulinkki kopioitu leikepöydälle!", "Copy": "Kopioi", - "Copy Code": "", "Copy last code block": "Kopioi viimeisin koodilohko", "Copy last response": "Kopioi viimeisin vastaus", "Copy Link": "Kopioi linkki", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosee-mänty", "Rosé Pine Dawn": "Aamuinen Rosee-mänty", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "Tallenna", diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json index cbeb68a0181e47744cd7ca2ed9a9b2e927daf560..dbbd6d8aa207c7a4d437db9da2e5a94b58b9ac31 100644 --- a/src/lib/i18n/locales/fr-CA/translation.json +++ b/src/lib/i18n/locales/fr-CA/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Continuer la réponse", "Continue with {{provider}}": "Continuer avec {{provider}}", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "URL du chat copiée dans le presse-papiers\u00a0!", "Copy": "Copie", - "Copy Code": "", "Copy last code block": "Copier le dernier bloc de code", "Copy last response": "Copier la dernière réponse", "Copy Link": "Copier le lien", @@ -501,7 +499,6 @@ "Rosé Pine": "Pin rosé", "Rosé Pine Dawn": "Aube de Pin Rosé", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "Courir", "Save": "Enregistrer", diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json index e18f92edc8c572667987e0bc521b45f6a888eae7..2da588cdb93d670060225b41b5f7f333930880e4 100644 --- a/src/lib/i18n/locales/fr-FR/translation.json +++ b/src/lib/i18n/locales/fr-FR/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Continuer la réponse", "Continue with {{provider}}": "Continuer avec {{provider}}", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "URL du chat copiée dans le presse-papiers\u00a0!", "Copy": "Copie", - "Copy Code": "", "Copy last code block": "Copier le dernier bloc de code", "Copy last response": "Copier la dernière réponse", "Copy Link": "Copier le lien", @@ -501,7 +499,6 @@ "Rosé Pine": "Pin rosé", "Rosé Pine Dawn": "Aube de Pin Rosé", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "Courir", "Save": "Enregistrer", diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json index c555784711144f02d99f31ef7b5b9f13cca5ccfd..dc0f7ed85c9c832d8ef9d5afc047d257cf560734 100644 --- a/src/lib/i18n/locales/he-IL/translation.json +++ b/src/lib/i18n/locales/he-IL/translation.json @@ -134,10 +134,8 @@ "Continue Response": "המשך תגובה", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "העתקת כתובת URL של צ'אט משותף ללוח!", "Copy": "העתק", - "Copy Code": "", "Copy last code block": "העתק את בלוק הקוד האחרון", "Copy last response": "העתק את התגובה האחרונה", "Copy Link": "העתק קישור", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "שמור", diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json index 7ebcda14b97aa7bab3fbcbc8177817e3345d0cee..1bc3817eb6accacbea62169686fb0fa7ac70126d 100644 --- a/src/lib/i18n/locales/hi-IN/translation.json +++ b/src/lib/i18n/locales/hi-IN/translation.json @@ -134,10 +134,8 @@ "Continue Response": "प्रतिक्रिया जारी रखें", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "साझा चैट URL को क्लिपबोर्ड पर कॉपी किया गया!", "Copy": "कॉपी", - "Copy Code": "", "Copy last code block": "अंतिम कोड ब्लॉक कॉपी करें", "Copy last response": "अंतिम प्रतिक्रिया कॉपी करें", "Copy Link": "लिंक को कॉपी करें", @@ -501,7 +499,6 @@ "Rosé Pine": "रोसे पिन", "Rosé Pine Dawn": "रोसे पिन डेन", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "सहेजें", diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json index d5ae63484ae75a8a8864ff7b574d2d8d7787df3a..32a8d4156bb6921980c0deb7e33bd1393f760a6f 100644 --- a/src/lib/i18n/locales/hr-HR/translation.json +++ b/src/lib/i18n/locales/hr-HR/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Nastavi odgovor", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "URL dijeljenog razgovora kopiran u međuspremnik!", "Copy": "Kopiraj", - "Copy Code": "", "Copy last code block": "Kopiraj zadnji blok koda", "Copy last response": "Kopiraj zadnji odgovor", "Copy Link": "Kopiraj vezu", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "Pokrenuto", "Save": "Spremi", diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json index 633ac78d983d860f10d5406577b132193b8bb359..fa60d23f80b948b34a0cd3ba77b3857aec0fb532 100644 --- a/src/lib/i18n/locales/id-ID/translation.json +++ b/src/lib/i18n/locales/id-ID/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Lanjutkan Tanggapan", "Continue with {{provider}}": "Lanjutkan dengan {{penyedia}}", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "Menyalin URL obrolan bersama ke papan klip!", "Copy": "Menyalin", - "Copy Code": "", "Copy last code block": "Salin blok kode terakhir", "Copy last response": "Salin tanggapan terakhir", "Copy Link": "Salin Tautan", @@ -501,7 +499,6 @@ "Rosé Pine": "Pinus Rosé", "Rosé Pine Dawn": "Rosé Pine Fajar", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "Berjalan", "Save": "Simpan", diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json index 514fa277df3998c97091b95944cc65e872b37751..138cee91df5fa20c844877fe9ab4fb9661e77f21 100644 --- a/src/lib/i18n/locales/it-IT/translation.json +++ b/src/lib/i18n/locales/it-IT/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Continua risposta", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "URL della chat condivisa copiato negli appunti!", "Copy": "Copia", - "Copy Code": "", "Copy last code block": "Copia ultimo blocco di codice", "Copy last response": "Copia ultima risposta", "Copy Link": "Copia link", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "Salva", diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json index fca1d3f106db006eeb2056f2701701436d4c8d7e..1d6fe5b411422dd71077c7e58d8f01cf741c5939 100644 --- a/src/lib/i18n/locales/ja-JP/translation.json +++ b/src/lib/i18n/locales/ja-JP/translation.json @@ -134,10 +134,8 @@ "Continue Response": "続きの応答", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "共有チャットURLをクリップボードにコピーしました!", "Copy": "コピー", - "Copy Code": "", "Copy last code block": "最後のコードブロックをコピー", "Copy last response": "最後の応答をコピー", "Copy Link": "リンクをコピー", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "保存", diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json index e332d37dd0c0bc6116e28782c8e36a02a6ee79c1..5c0799b5ac8cd4574e302be076edcf05a7a91dde 100644 --- a/src/lib/i18n/locales/ka-GE/translation.json +++ b/src/lib/i18n/locales/ka-GE/translation.json @@ -134,10 +134,8 @@ "Continue Response": "პასუხის გაგრძელება", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "ყავს ჩათის URL-ი კლიპბორდში!", "Copy": "კოპირება", - "Copy Code": "", "Copy last code block": "ბოლო ბლოკის კოპირება", "Copy last response": "ბოლო პასუხის კოპირება", "Copy Link": "კოპირება", @@ -501,7 +499,6 @@ "Rosé Pine": "ვარდისფერი ფიჭვის ხე", "Rosé Pine Dawn": "ვარდისფერი ფიჭვის გარიჟრაჟი", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "შენახვა", diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json index 0e683584c1e828b17d297553069892cffb9ac8e1..55809e8c4868e035d7651d61cd2671fb7ea993f1 100644 --- a/src/lib/i18n/locales/ko-KR/translation.json +++ b/src/lib/i18n/locales/ko-KR/translation.json @@ -134,10 +134,8 @@ "Continue Response": "대화 계속", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "공유 채팅 URL이 클립보드에 복사되었습니다!", "Copy": "복사", - "Copy Code": "", "Copy last code block": "마지막 코드 블록 복사", "Copy last response": "마지막 응답 복사", "Copy Link": "링크 복사", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "실행 중", "Save": "저장", diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json index 3dd31a25e9af2e7a68a696d3875e2db9c9b86961..82d25f8d1a45c4b6033b6d64db0e0ac57d5bbe09 100644 --- a/src/lib/i18n/locales/lt-LT/translation.json +++ b/src/lib/i18n/locales/lt-LT/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Tęsti atsakymą", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "Nukopijavote pokalbio nuorodą", "Copy": "Kopijuoti", - "Copy Code": "", "Copy last code block": "Kopijuoti paskutinį kodo bloką", "Copy last response": "Kopijuoti paskutinį atsakymą", "Copy Link": "Kopijuoti nuorodą", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "Išsaugoti", diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json index aae6e9d6d09c988046d111881a8271ee0ae1ee5e..ed482fa8fd5cd8390f1d9b6da2354ec0558ccab5 100644 --- a/src/lib/i18n/locales/ms-MY/translation.json +++ b/src/lib/i18n/locales/ms-MY/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Teruskan Respons", "Continue with {{provider}}": "Teruskan dengan {{provider}}", "Controls": "Kawalan", - "Copied": "", "Copied shared chat URL to clipboard!": "Menyalin URL sembang kongsi ke papan klip", "Copy": "Salin", - "Copy Code": "", "Copy last code block": "Salin Blok Kod Terakhir", "Copy last response": "Salin Respons Terakhir", "Copy Link": "Salin Pautan", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "Jalankan Llama 2, Code Llama dan model lain. Sesuaikan dan buat sendiri.", "Running": "Sedang dijalankan", "Save": "Simpan", diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json index bb914fed4f9ab2ac0f224a5dc3c5f3c793cd9aee..0700915c3166ab05e31c26f6b16917fcf9728413 100644 --- a/src/lib/i18n/locales/nb-NO/translation.json +++ b/src/lib/i18n/locales/nb-NO/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Fortsett svar", "Continue with {{provider}}": "Fortsett med {{provider}}", "Controls": "Kontroller", - "Copied": "", "Copied shared chat URL to clipboard!": "Kopiert delt chat-URL til utklippstavlen!", "Copy": "Kopier", - "Copy Code": "", "Copy last code block": "Kopier siste kodeblokk", "Copy last response": "Kopier siste svar", "Copy Link": "Kopier lenke", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "Kjør Llama 2, Code Llama og andre modeller. Tilpass og lag egne versjoner.", "Running": "Kjører", "Save": "Lagre", diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json index f4021dd67c24cb1ee44ad9fd3c5bb1dc0797ceb9..c1ba4efdf7bf1808181f44bc769fb1ff1d3d8fbc 100644 --- a/src/lib/i18n/locales/nl-NL/translation.json +++ b/src/lib/i18n/locales/nl-NL/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Doorgaan met Antwoord", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "URL van gedeelde gesprekspagina gekopieerd naar klembord!", "Copy": "Kopieer", - "Copy Code": "", "Copy last code block": "Kopieer laatste code blok", "Copy last response": "Kopieer laatste antwoord", "Copy Link": "Kopieer Link", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "Opslaan", diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json index 9fe7854b498054a662a822585aba1a98e94c837e..de55b885f5f86339eb59553307eef4945704498a 100644 --- a/src/lib/i18n/locales/pa-IN/translation.json +++ b/src/lib/i18n/locales/pa-IN/translation.json @@ -134,10 +134,8 @@ "Continue Response": "ਜਵਾਬ ਜਾਰੀ ਰੱਖੋ", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "ਸਾਂਝੇ ਕੀਤੇ ਗੱਲਬਾਤ URL ਨੂੰ ਕਲਿੱਪਬੋਰਡ 'ਤੇ ਕਾਪੀ ਕਰ ਦਿੱਤਾ!", "Copy": "ਕਾਪੀ ਕਰੋ", - "Copy Code": "", "Copy last code block": "ਆਖਰੀ ਕੋਡ ਬਲਾਕ ਨੂੰ ਕਾਪੀ ਕਰੋ", "Copy last response": "ਆਖਰੀ ਜਵਾਬ ਨੂੰ ਕਾਪੀ ਕਰੋ", "Copy Link": "ਲਿੰਕ ਕਾਪੀ ਕਰੋ", @@ -501,7 +499,6 @@ "Rosé Pine": "ਰੋਜ਼ ਪਾਈਨ", "Rosé Pine Dawn": "ਰੋਜ਼ ਪਾਈਨ ਡਾਨ", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "ਸੰਭਾਲੋ", diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json index c752fdac02c7357b3189d6687b8316a7071f41ca..901f55ef6539e3125fc38f8889bba7e7beede514 100644 --- a/src/lib/i18n/locales/pl-PL/translation.json +++ b/src/lib/i18n/locales/pl-PL/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Kontynuuj odpowiedź", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "Skopiowano URL czatu do schowka!", "Copy": "Kopiuj", - "Copy Code": "", "Copy last code block": "Skopiuj ostatni blok kodu", "Copy last response": "Skopiuj ostatnią odpowiedź", "Copy Link": "Kopiuj link", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RLT", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "Zapisz", diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index 3a75a847ae7d7df28af0c5df854d57f28eeb8447..34df9129d6fbe943a00fbf28739f6cd858cc0400 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Continuar Resposta", "Continue with {{provider}}": "Continuar com {{provider}}", "Controls": "Controles", - "Copied": "", "Copied shared chat URL to clipboard!": "URL de chat compartilhado copiado para a área de transferência!", "Copy": "Copiar", - "Copy Code": "", "Copy last code block": "Copiar último bloco de código", "Copy last response": "Copiar última resposta", "Copy Link": "Copiar Link", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "Execute Llama 2, Code Llama e outros modelos. Personalize e crie os seus próprios.", "Running": "Executando", "Save": "Salvar", diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json index cba72ee9f83f116557c95a5cd8893e476bce5d41..9313879ebe30f17ec7625c9944fb0252fa035284 100644 --- a/src/lib/i18n/locales/pt-PT/translation.json +++ b/src/lib/i18n/locales/pt-PT/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Continuar resposta", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "URL de Conversa partilhado copiada com sucesso!", "Copy": "Copiar", - "Copy Code": "", "Copy last code block": "Copiar último bloco de código", "Copy last response": "Copiar última resposta", "Copy Link": "Copiar link", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "A correr", "Save": "Guardar", diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json index 41deca9090704c5bfbfd40d09b13c64d41d6d2aa..4154631a41da997d393b502593cd46ab34287634 100644 --- a/src/lib/i18n/locales/ro-RO/translation.json +++ b/src/lib/i18n/locales/ro-RO/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Continuă Răspunsul", "Continue with {{provider}}": "Continuă cu {{provider}}", "Controls": "Controale", - "Copied": "", "Copied shared chat URL to clipboard!": "URL-ul conversației partajate a fost copiat în clipboard!", "Copy": "Copiază", - "Copy Code": "", "Copy last code block": "Copiază ultimul bloc de cod", "Copy last response": "Copiază ultimul răspuns", "Copy Link": "Copiază Link", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "Rulați Llama 2, Code Llama și alte modele. Personalizați și creați-vă propriile modele.", "Running": "Rulare", "Save": "Salvează", diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json index c6298475721a1e7c9a933eacaa9c1f57980a164d..806a1e7b9f461c022ea41385a491913947b94f02 100644 --- a/src/lib/i18n/locales/ru-RU/translation.json +++ b/src/lib/i18n/locales/ru-RU/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Продолжить ответ", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "Копирование общей ссылки чат в буфер обмена!", "Copy": "Копировать", - "Copy Code": "", "Copy last code block": "Копировать последний блок кода", "Copy last response": "Копировать последний ответ", "Copy Link": "Копировать ссылку", @@ -501,7 +499,6 @@ "Rosé Pine": "Розовое сосновое дерево", "Rosé Pine Dawn": "Розовое сосновое дерево рассвет", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "Сохранить", diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json index 558d25f7035ad77e4297cb7b69410528eb935bc3..a6722c14a956455ea97def448c577c180db6f046 100644 --- a/src/lib/i18n/locales/sr-RS/translation.json +++ b/src/lib/i18n/locales/sr-RS/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Настави одговор", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "Адреса дељеног ћаскања ископирана у оставу!", "Copy": "Копирај", - "Copy Code": "", "Copy last code block": "Копирај последњи блок кода", "Copy last response": "Копирај последњи одговор", "Copy Link": "Копирај везу", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "ДНЛ", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "Сачувај", diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json index 0edcc440db5997347227ea90b8517ef9b0f0be4b..a69343945baa6f2a872bea67ecd58871b203be77 100644 --- a/src/lib/i18n/locales/sv-SE/translation.json +++ b/src/lib/i18n/locales/sv-SE/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Fortsätt svar", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "Kopierad delad chatt-URL till urklipp!", "Copy": "Kopiera", - "Copy Code": "", "Copy last code block": "Kopiera sista kodblock", "Copy last response": "Kopiera sista svar", "Copy Link": "Kopiera länk", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "Kör", "Save": "Spara", diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json index b4788a068b3259a613de44e6ca8a56d2d2bfb70a..198578bea4399ba93929107794b1cbd9e54fd376 100644 --- a/src/lib/i18n/locales/th-TH/translation.json +++ b/src/lib/i18n/locales/th-TH/translation.json @@ -134,10 +134,8 @@ "Continue Response": "ตอบสนองต่อไป", "Continue with {{provider}}": "ดำเนินการต่อด้วย {{provider}}", "Controls": "การควบคุม", - "Copied": "", "Copied shared chat URL to clipboard!": "คัดลอก URL แชทที่แชร์ไปยังคลิปบอร์ดแล้ว!", "Copy": "คัดลอก", - "Copy Code": "", "Copy last code block": "คัดลอกบล็อกโค้ดสุดท้าย", "Copy last response": "คัดลอกการตอบสนองล่าสุด", "Copy Link": "คัดลอกลิงก์", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "รัน Llama 2, Code Llama และโมเดลอื่นๆ ปรับแต่งและสร้างของคุณเอง", "Running": "กำลังทำงาน", "Save": "บันทึก", diff --git a/src/lib/i18n/locales/tk-TW/translation.json b/src/lib/i18n/locales/tk-TW/translation.json index 107f83c15d4b86c5444102828057b1a7945b7f2f..817b79b407bf17b80ca65b073561bce40d0a4dcf 100644 --- a/src/lib/i18n/locales/tk-TW/translation.json +++ b/src/lib/i18n/locales/tk-TW/translation.json @@ -134,10 +134,8 @@ "Continue Response": "", "Continue with {{provider}}": "", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "", "Copy": "", - "Copy Code": "", "Copy last code block": "", "Copy last response": "", "Copy Link": "", @@ -501,7 +499,6 @@ "Rosé Pine": "", "Rosé Pine Dawn": "", "RTL": "", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "", "Save": "", diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json index 00276d4227005f155bf6033f4d40b243e3655b34..8f81acb5f06d804045726d0a8696c9f62d56e99c 100644 --- a/src/lib/i18n/locales/tr-TR/translation.json +++ b/src/lib/i18n/locales/tr-TR/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Yanıta Devam Et", "Continue with {{provider}}": "{{provider}} ile devam et", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "Paylaşılan sohbet URL'si panoya kopyalandı!", "Copy": "Kopyala", - "Copy Code": "", "Copy last code block": "Son kod bloğunu kopyala", "Copy last response": "Son yanıtı kopyala", "Copy Link": "Bağlantıyı Kopyala", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "", "Running": "Çalışıyor", "Save": "Kaydet", diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json index 3f6f874010c074b540007c64c3236695db19d855..f5e137b29d4bff12dc832a4ddca7d7fbe1c16398 100644 --- a/src/lib/i18n/locales/uk-UA/translation.json +++ b/src/lib/i18n/locales/uk-UA/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Продовжити відповідь", "Continue with {{provider}}": "Продовжити з {{provider}}", "Controls": "Керування", - "Copied": "", "Copied shared chat URL to clipboard!": "Скопійовано URL-адресу спільного чату в буфер обміну!", "Copy": "Копіювати", - "Copy Code": "", "Copy last code block": "Копіювати останній блок коду", "Copy last response": "Копіювати останню відповідь", "Copy Link": "Копіювати посилання", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "Запустіть Llama 2, Code Llama та інші моделі. Налаштуйте та створіть власну.", "Running": "Виконується", "Save": "Зберегти", diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json index b0e5db98268a1f9fae1801e635b03cef97655d54..c77119809f57a243c4406c03ec4bbbc4cf0094e1 100644 --- a/src/lib/i18n/locales/vi-VN/translation.json +++ b/src/lib/i18n/locales/vi-VN/translation.json @@ -134,10 +134,8 @@ "Continue Response": "Tiếp tục trả lời", "Continue with {{provider}}": "Tiếp tục với {{provider}}", "Controls": "", - "Copied": "", "Copied shared chat URL to clipboard!": "Đã sao chép link chia sẻ trò chuyện vào clipboard!", "Copy": "Sao chép", - "Copy Code": "", "Copy last code block": "Sao chép khối mã cuối cùng", "Copy last response": "Sao chép phản hồi cuối cùng", "Copy Link": "Sao chép link", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "RTL", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "Chạy Llama 2, Code Llama và các mô hình khác. Tùy chỉnh hoặc mô hình riêng của bạn.", "Running": "Đang chạy", "Save": "Lưu", diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json index 8b673e005931ff8e0ba7fd65f544bff88d6aa749..0ba6f840ef9c1912c67f6a6954d0844531d09f88 100644 --- a/src/lib/i18n/locales/zh-CN/translation.json +++ b/src/lib/i18n/locales/zh-CN/translation.json @@ -134,10 +134,8 @@ "Continue Response": "继续生成", "Continue with {{provider}}": "使用 {{provider}} 继续", "Controls": "对话高级设置", - "Copied": "", "Copied shared chat URL to clipboard!": "已复制此对话分享链接至剪贴板!", "Copy": "复制", - "Copy Code": "", "Copy last code block": "复制最后一个代码块中的代码", "Copy last response": "复制最后一次回复内容", "Copy Link": "复制链接", @@ -501,7 +499,6 @@ "Rosé Pine": "Rosé Pine", "Rosé Pine Dawn": "Rosé Pine Dawn", "RTL": "从右至左", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "运行 Llama 2、Code Llama 和其他模型。自定义和创建您自己的模型。", "Running": "运行中", "Save": "保存", diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json index 8b7079e68981e94e9f1cbfa91dd26254d039d24a..867bacae93e39d888a0c252fc0618df76f2e0d94 100644 --- a/src/lib/i18n/locales/zh-TW/translation.json +++ b/src/lib/i18n/locales/zh-TW/translation.json @@ -134,10 +134,8 @@ "Continue Response": "繼續回應", "Continue with {{provider}}": "使用 {{provider}} 繼續", "Controls": "控制項", - "Copied": "", "Copied shared chat URL to clipboard!": "已複製共用對話 URL 到剪貼簿!", "Copy": "複製", - "Copy Code": "", "Copy last code block": "複製最後一個程式碼區塊", "Copy last response": "複製最後一個回應", "Copy Link": "複製連結", @@ -501,7 +499,6 @@ "Rosé Pine": "玫瑰松", "Rosé Pine Dawn": "黎明玫瑰松", "RTL": "從右到左", - "Run": "", "Run Llama 2, Code Llama, and other models. Customize and create your own.": "執行 Llama 2、Code Llama 和其他模型。自訂並建立您自己的模型。", "Running": "運作中", "Save": "儲存", diff --git a/src/lib/utils/index.ts b/src/lib/utils/index.ts index de3a2ca2cb3c1d1b24a5cc4e054902026831124c..385b006ab7cf68d7c7d63937f721bc93fd9675cb 100644 --- a/src/lib/utils/index.ts +++ b/src/lib/utils/index.ts @@ -9,7 +9,7 @@ import { WEBUI_BASE_URL } from '$lib/constants'; const convertLatexToSingleLine = (content) => { // Patterns to match multiline LaTeX blocks const patterns = [ - /(\$\$\s[\s\S]*?\s\$\$)/g, // Match $$ ... $$ + /(\$\$[\s\S]*?\$\$)/g, // Match $$ ... $$ /(\\\[[\s\S]*?\\\])/g, // Match \[ ... \] /(\\begin\{[a-z]+\}[\s\S]*?\\end\{[a-z]+\})/g // Match \begin{...} ... \end{...} ]; @@ -25,8 +25,7 @@ const convertLatexToSingleLine = (content) => { export const sanitizeResponseContent = (content: string) => { // replace single backslash with double backslash - content = content.replace(/\\\\/g, '\\\\\\\\'); - + content = content.replace(/\\/g, '\\\\'); content = convertLatexToSingleLine(content); // First, temporarily replace valid