Update app.py
Browse files
app.py
CHANGED
@@ -24,6 +24,6 @@ def func(context, question):
|
|
24 |
|
25 |
descr = "This is a question and Answer Web app, you give it a context and ask it questions based on the context provided"
|
26 |
|
27 |
-
app = gr.Interface(fn=func, inputs=[gr.inputs.Textbox(lines=3, placeholder="put in your context here..."),"text"], outputs="text",
|
28 |
|
29 |
app.launch()
|
|
|
24 |
|
25 |
descr = "This is a question and Answer Web app, you give it a context and ask it questions based on the context provided"
|
26 |
|
27 |
+
app = gr.Interface(fn=func, inputs=[gr.inputs.Textbox(lines=3, placeholder="put in your context here..."),"text"], outputs="text", score=score, title="Question Answer App", description=descr)
|
28 |
|
29 |
app.launch()
|