Skip to content

Commit

Permalink
hack to add extra elements
Browse files Browse the repository at this point in the history
  • Loading branch information
leej3 committed Aug 28, 2024
1 parent 11368fb commit d54b4e6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion web/dashboard/main_dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,10 @@ def __init__(self, datasets, **params):

# By default, take the first dataset.
# Currently, there's only RTransparent
self.param.extraction_tool.objects = list(self.datasets.keys())
self.param.extraction_tool.objects = [
*list(self.datasets.keys()),
*["Manual curation", "GPT_4o_2024_08_06"],
]
self.extraction_tool = self.param.extraction_tool.objects[0]

self.journal_select_picker = SelectPicker.from_param(
Expand Down

0 comments on commit d54b4e6

Please sign in to comment.