Release 3.37 (#4947)

* 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

View File

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

View File

@ -1 +1 @@
3.36.1
3.37.0

View File

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