Xtramrks / app.py
Joom's picture
Update app.py
b2768fc
raw
history blame contribute delete
No virus
426 Bytes
import gradio as gr
def hi():
return "hello"
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 = hi,
inputs=[context,answer],)
iface.launch(debug=False)