Bump gradio to 4.19 (#5522)

This commit is contained in:
oobabooga 2024-03-05 07:32:28 -03:00 committed by GitHub
parent 164ff2440d
commit 63a1d4afc8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 67 additions and 63 deletions

9
modules/gradio_hijack.py Normal file
View file

@ -0,0 +1,9 @@
import gradio as gr
def Box(*args, **kwargs):
return gr.Blocks(*args, **kwargs)
if not hasattr(gr, 'Box'):
gr.Box = Box