Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -26,5 +26,5 @@ examples = ['What is the date of his death?', 'Did Einstein have siblings?', 'Wh
|
|
26 |
inputs = gr.Textbox(label='query')
|
27 |
outputs = gr.Textbox(label='Answers')
|
28 |
title = "Similar faq"
|
29 |
-
description = "Retreive answers of similar queries
|
30 |
gr.Interface(fn = predict, inputs = inputs, examples=examples, outputs = outputs, title = title, description = description).launch()
|
|
|
26 |
inputs = gr.Textbox(label='query')
|
27 |
outputs = gr.Textbox(label='Answers')
|
28 |
title = "Similar faq"
|
29 |
+
description = "Retreive answers of similar queries using sentence transformers"
|
30 |
gr.Interface(fn = predict, inputs = inputs, examples=examples, outputs = outputs, title = title, description = description).launch()
|