update the UI
Browse files
app.py
CHANGED
@@ -22,6 +22,11 @@ screen = gr.Interface(
|
|
22 |
title="Facilitating the QnA with roberta-base-squad2 π©π»βπ»πβπ»π‘",
|
23 |
description="This app aims to facilitate the simple QnA with the provided contextπ‘",
|
24 |
theme="soft",
|
|
|
|
|
|
|
|
|
|
|
25 |
)
|
26 |
|
27 |
screen.launch()
|
|
|
22 |
title="Facilitating the QnA with roberta-base-squad2 π©π»βπ»πβπ»π‘",
|
23 |
description="This app aims to facilitate the simple QnA with the provided contextπ‘",
|
24 |
theme="soft",
|
25 |
+
article = """
|
26 |
+
### Disclaimer : This model is purely used for QnA. User is expected to paste the text from which they want the answer in **context** section.
|
27 |
+
Then paste the question in the **question** section.
|
28 |
+
User will get the answer in the answer section."""
|
29 |
+
|
30 |
)
|
31 |
|
32 |
screen.launch()
|