import gradio as gr title = "Question Answering with IndoBERT" context = """ The Beatles adalah band rock asal Inggris yang populer pada tahun 60an. """ question = "Siapa itu The Beatles?" gr.Interface.load("huggingface/esakrissa/IndoBERT-SQuAD", title=title, inputs=[gr.Textbox(label="Context", lines=5, value=context), gr.Textbox(label="Question", value=question)]).launch()