From 1f5c090cb5de0a6526c5fd097f48b8802df12919 Mon Sep 17 00:00:00 2001 From: Abubakar Abid Date: Mon, 17 Jul 2023 14:52:39 -0400 Subject: [PATCH] Release 3.37 (#4947) * version * ltr --- CHANGELOG.md | 20 ++++++++++++++++++++ gradio/version.txt | 2 +- js/chatbot/src/static/ChatBot.svelte | 2 ++ 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd45150a06..b072ae8f14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Upcoming Release +No changes to highlight. + +## New Features: + +No changes to highlight. + +## Bug Fixes: + +No changes to highlight. + +## Breaking Changes: + +No changes to highlight. + +## Other Changes: + +No changes to highlight. + +# Version 3.37 + ## New Features: Introducing a new `gr.ChatInterface` abstraction, which allows Gradio users to build fully functioning Chat interfaces very easily. The only required parameter is a chat function `fn`, which accepts a (string) user input `message` and a (list of lists) chat `history` and returns a (string) response. Here's a toy example: diff --git a/gradio/version.txt b/gradio/version.txt index 952d4c113f..c03c47aa89 100644 --- a/gradio/version.txt +++ b/gradio/version.txt @@ -1 +1 @@ -3.36.1 +3.37.0 diff --git a/js/chatbot/src/static/ChatBot.svelte b/js/chatbot/src/static/ChatBot.svelte index 404a2bfc46..7a52906f29 100644 --- a/js/chatbot/src/static/ChatBot.svelte +++ b/js/chatbot/src/static/ChatBot.svelte @@ -324,6 +324,7 @@ border-radius: var(--radius-md); background-color: var(--chatbot-code-background-color); padding: var(--spacing-xl) 10px; + direction: ltr; } /* Tables */ @@ -359,6 +360,7 @@ /* KaTeX */ .message-wrap :global(span.katex) { font-size: var(--text-lg); + direction: ltr; } /* Copy button */