Bazedgul's picture
Create app.py
ef7264e
raw
history blame contribute delete
384 Bytes
import gradio as gr
from transformers import pipeline
title = 'BG Question Answering APP'
context = "My name is Bazed Gul. I love tea and drink it regularly"
question = "What do I love?"
question_answerer = pipeline("question-answering")
interface = gr.Interface.from_pipeline(question_answerer,
title = title,
theme = "grass",
examples = [[context, question]]).launch()