From f1dac4a5cc8100ce8173c354f21630ac35b706a1 Mon Sep 17 00:00:00 2001 From: rajeevrajeshuni Date: Mon, 29 Dec 2025 21:48:02 +0530 Subject: [PATCH] fix a minor bug --- cognee/cli/tui/cognify_screen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cognee/cli/tui/cognify_screen.py b/cognee/cli/tui/cognify_screen.py index c939da02e..e2f6e916c 100644 --- a/cognee/cli/tui/cognify_screen.py +++ b/cognee/cli/tui/cognify_screen.py @@ -46,10 +46,10 @@ class CognifyTUIScreen(BaseTUIScreen): yield Static("⚡ Cognify Data", classes="tui-title-bordered") with Vertical(classes="tui-form"): yield Label( - "Dataset Name (optional, leave empty for all):", classes="tui-label-spaced" + "Dataset Name:", classes="tui-label-spaced" ) yield Input( - placeholder="Leave empty to process all datasets", value="", id="dataset-input" + placeholder="Enter the dataset name here.", value="", id="dataset-input" ) yield Label("Chunker Type:", classes="tui-label-spaced")