mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
parent
edde958e32
commit
1f5c090cb5
20
CHANGELOG.md
20
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:
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user