Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -11,9 +11,10 @@ def load_data():
|
|
| 11 |
return ds
|
| 12 |
|
| 13 |
def print_question(example):
|
| 14 |
-
st.
|
| 15 |
st.write(example["question"])
|
| 16 |
-
st.
|
|
|
|
| 17 |
st.write(example["response_j"])
|
| 18 |
|
| 19 |
samples = load_data()
|
|
|
|
| 11 |
return ds
|
| 12 |
|
| 13 |
def print_question(example):
|
| 14 |
+
st.markdown("**Question**")
|
| 15 |
st.write(example["question"])
|
| 16 |
+
st.markdown("""---""")
|
| 17 |
+
st.markdown("**Answer**")
|
| 18 |
st.write(example["response_j"])
|
| 19 |
|
| 20 |
samples = load_data()
|