Xtramrks / app.py
Joom's picture
Update app.py
e3346c0
raw
history blame
406 Bytes
import gradio as gr
context = gr.inputs.Textbox(lines=5, placeholder="Enter the relevant theory or context of the questions here")
answer = gr.inputs.Textbox(lines=3, placeholder="Ënter the excpected answer/keyword here" )
#question = [gr.outputs.Textbox(type="auto")for question in final_outputs]
iface = gr.Interface(
fn=generate_question,
inputs=[context,answer],)
iface.launch(debug=False)