nat232 commited on
Commit
6253bf9
·
verified ·
1 Parent(s): 3d596d7

Update PanelInterface.py

Browse files
Files changed (1) hide show
  1. PanelInterface.py +1 -1
PanelInterface.py CHANGED
@@ -61,7 +61,7 @@ def build_interface(respondent_agents_dict, processor_llm):
61
 
62
  # Load panelists from Excel
63
  panelists = load_panelists_from_excel("config/genzheroes/panelist_details.xlsx")
64
- bios_js_object = {p["ID"]: p["Bio"] for p in panelists}
65
  panel_html = "".join(
66
  f"<p><a href='javascript:void(0);' onclick='showModal(event, \"{p['ID']}\"); return false;'><b>{p['Name']}</b></a> – {p['Description']}</p>"
67
  for p in panelists
 
61
 
62
  # Load panelists from Excel
63
  panelists = load_panelists_from_excel("config/genzheroes/panelist_details.xlsx")
64
+ bios_js_object = {p["ID"]: f"<b>{p['Name']}</b><br>{p['Description']}<br><br>{p['Bio']}" for p in panelists}
65
  panel_html = "".join(
66
  f"<p><a href='javascript:void(0);' onclick='showModal(event, \"{p['ID']}\"); return false;'><b>{p['Name']}</b></a> – {p['Description']}</p>"
67
  for p in panelists