app.py
CHANGED
@@ -154,6 +154,7 @@ def main(args):
|
|
154 |
|
155 |
summary_diff = gr.HighlightedText(
|
156 |
label="Summary so far",
|
|
|
157 |
combine_adjacent=True,
|
158 |
show_legend=True,
|
159 |
color_map={"+": "red", "-": "green"},
|
@@ -163,6 +164,7 @@ def main(args):
|
|
163 |
|
164 |
summary_md = gr.Markdown(
|
165 |
label="Summary so far",
|
|
|
166 |
elem_classes=["summary-window"],
|
167 |
visible=True
|
168 |
)
|
|
|
154 |
|
155 |
summary_diff = gr.HighlightedText(
|
156 |
label="Summary so far",
|
157 |
+
# value="No summary yet. As you chat with the assistant, the summary will be updated automatically.",
|
158 |
combine_adjacent=True,
|
159 |
show_legend=True,
|
160 |
color_map={"+": "red", "-": "green"},
|
|
|
164 |
|
165 |
summary_md = gr.Markdown(
|
166 |
label="Summary so far",
|
167 |
+
value="No summary yet. As you chat with the assistant, the summary will be updated automatically.",
|
168 |
elem_classes=["summary-window"],
|
169 |
visible=True
|
170 |
)
|