2
0
mirror of https://github.com/gradio-app/gradio.git synced 2025-03-31 12:20:26 +08:00

Release 3.37 ()

* version

* ltr
This commit is contained in:
Abubakar Abid 2023-07-17 14:52:39 -04:00 committed by GitHub
parent edde958e32
commit 1f5c090cb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 1 deletions
CHANGELOG.md
gradio
js/chatbot/src/static

@ -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:

@ -1 +1 @@
3.36.1
3.37.0

@ -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 */