Skip to content

Commit a1dfa83

Browse files
Merge pull request #98 from drunkenbot-ai/develop
Develop
2 parents 0ad447a + b32f3e8 commit a1dfa83

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

interface/tabs/dataset_plan_tab.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,15 @@ def build_dataset_plan_tab(window) -> QWidget:
286286
(path.name for path in active_data_root.iterdir() if path.is_dir()),
287287
key=str.casefold,
288288
) if active_data_root.exists() else []
289-
window.dataset_stage.addItems(workflow_names or ["base"])
289+
workflow_names = list(dict.fromkeys([
290+
"base",
291+
"instruction",
292+
"conversation",
293+
"tool_call",
294+
"code",
295+
*workflow_names,
296+
]))
297+
window.dataset_stage.addItems(workflow_names)
290298
window.dataset_stage.setMaximumWidth(240)
291299
# Trial users may choose the dataset purpose; only online/external data
292300
# sources are entitlement-gated below.

0 commit comments

Comments
 (0)