Spaces:
Sleeping
Sleeping
Update dialogue examples
Browse files
app.py
CHANGED
@@ -54,3 +54,7 @@ if summarize_button and user_input:
|
|
54 |
# Display the generated summary on the right side
|
55 |
col2.subheader("Generated Summary:")
|
56 |
col2.write(summary)
|
|
|
|
|
|
|
|
|
|
54 |
# Display the generated summary on the right side
|
55 |
col2.subheader("Generated Summary:")
|
56 |
col2.write(summary)
|
57 |
+
|
58 |
+
st.markdown("**Dialogue examples:**")
|
59 |
+
for idx, example in enumerate(dialogue_examples, 1):
|
60 |
+
st.write(f"Example {idx}:\n{example}")
|