ale-dp commited on
Commit
7dda172
1 Parent(s): d7d5a1b

Update dialogue examples

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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}")