Skip to content

Commit

Permalink
Release 3.37 (#4947)
Browse files Browse the repository at this point in the history
* version

* ltr
  • Loading branch information
abidlabs authored Jul 17, 2023
1 parent edde958 commit 1f5c090
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion gradio/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.36.1
3.37.0
2 changes: 2 additions & 0 deletions js/chatbot/src/static/ChatBot.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,7 @@
border-radius: var(--radius-md);
background-color: var(--chatbot-code-background-color);
padding: var(--spacing-xl) 10px;
direction: ltr;
}
/* Tables */
Expand Down Expand Up @@ -359,6 +360,7 @@
/* KaTeX */
.message-wrap :global(span.katex) {
font-size: var(--text-lg);
direction: ltr;
}
/* Copy button */
Expand Down

1 comment on commit 1f5c090

@vercel
Copy link

@vercel vercel bot commented on 1f5c090 Jul 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.