Update app.py
Browse files
app.py
CHANGED
|
@@ -12,6 +12,7 @@ import gradio as gr
|
|
| 12 |
|
| 13 |
def generative_qna(input):
|
| 14 |
print(input)
|
|
|
|
| 15 |
|
| 16 |
app = gr.Interface(fn=generative_qna, inputs=[gr.Textbox(label="Question", lines=3)],
|
| 17 |
outputs=[gr.Textbox(label="Answer", lines=6)],
|
|
|
|
| 12 |
|
| 13 |
def generative_qna(input):
|
| 14 |
print(input)
|
| 15 |
+
return input
|
| 16 |
|
| 17 |
app = gr.Interface(fn=generative_qna, inputs=[gr.Textbox(label="Question", lines=3)],
|
| 18 |
outputs=[gr.Textbox(label="Answer", lines=6)],
|