Abid Ali Awan commited on
Commit
7c4a838
·
1 Parent(s): f929135

Update UIHandler to change the emoji in the collapsible results section from ⚖️ to 🗃️ for improved clarity and consistency in the display of raw regulatory data.

Browse files
Files changed (1) hide show
  1. agents/ui_handler.py +2 -2
agents/ui_handler.py CHANGED
@@ -178,14 +178,14 @@ class UIHandler:
178
  if results_display:
179
  collapsible_results = f"""
180
  <details>
181
- <summary><strong>⚖️ Raw Regulatory Data</strong> - Click to expand</summary>
182
 
183
  {"".join(results_display)}
184
 
185
  </details>
186
  """
187
  else:
188
- collapsible_results = "<details><summary><strong>⚖️ Raw Regulatory Data</strong> - Click to expand</summary>\nNo unique regulatory updates found.\n</details>"
189
  return collapsible_results
190
 
191
  def _format_memory_results(self, memory_results):
 
178
  if results_display:
179
  collapsible_results = f"""
180
  <details>
181
+ <summary><strong>🗃️ Raw Regulatory Data</strong> - Click to expand</summary>
182
 
183
  {"".join(results_display)}
184
 
185
  </details>
186
  """
187
  else:
188
+ collapsible_results = "<details><summary><strong>🗃️ Raw Regulatory Data</strong> - Click to expand</summary>\nNo unique regulatory updates found.\n</details>"
189
  return collapsible_results
190
 
191
  def _format_memory_results(self, memory_results):