add kwargs to gradio launch (#367)
This commit is contained in:
parent
dca7081394
commit
525a76b836
|
@ -173,7 +173,7 @@ class GradioUI:
|
||||||
"",
|
"",
|
||||||
)
|
)
|
||||||
|
|
||||||
def launch(self):
|
def launch(self, **kwargs):
|
||||||
import gradio as gr
|
import gradio as gr
|
||||||
|
|
||||||
with gr.Blocks() as demo:
|
with gr.Blocks() as demo:
|
||||||
|
@ -204,7 +204,7 @@ class GradioUI:
|
||||||
[stored_messages, text_input],
|
[stored_messages, text_input],
|
||||||
).then(self.interact_with_agent, [stored_messages, chatbot], [chatbot])
|
).then(self.interact_with_agent, [stored_messages, chatbot], [chatbot])
|
||||||
|
|
||||||
demo.launch()
|
demo.launch(**kwargs)
|
||||||
|
|
||||||
|
|
||||||
__all__ = ["stream_to_gradio", "GradioUI"]
|
__all__ = ["stream_to_gradio", "GradioUI"]
|
||||||
|
|
Loading…
Reference in New Issue