Spaces:
Runtime error
Runtime error
import gradio as gr | |
def predict(context, question): | |
raise Exception('Error') | |
title = "Gradio with error" | |
description = "Gradio with error." | |
iface = gr.Interface(fn=predict, | |
inputs=[gr.inputs.Textbox(label="context"), gr.inputs.Textbox(label="question")], | |
outputs='text', | |
title=title, | |
description=description, | |
examples=[["My name is Omar and I live in Mexico", "Where does Omar live?"]], | |
enable_queue=True) | |
iface.launch() |