2 parents 0ad447a + b32f3e8 commit a1dfa83Copy full SHA for a1dfa83
1 file changed
interface/tabs/dataset_plan_tab.py
@@ -286,7 +286,15 @@ def build_dataset_plan_tab(window) -> QWidget:
286
(path.name for path in active_data_root.iterdir() if path.is_dir()),
287
key=str.casefold,
288
) if active_data_root.exists() else []
289
- window.dataset_stage.addItems(workflow_names or ["base"])
+ 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)
298
window.dataset_stage.setMaximumWidth(240)
299
# Trial users may choose the dataset purpose; only online/external data
300
# sources are entitlement-gated below.
0 commit comments