From 84efd473220d2edf5e07409dae5f267ed7c6bcd4 Mon Sep 17 00:00:00 2001 From: Santosh Bhavani Date: Sat, 25 Oct 2025 14:11:03 -0700 Subject: [PATCH] Rename Traditional Graph to Graph Search in query selector MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update button label from "Traditional Graph" to "Graph Search" - Update comment references - Maintains "Graph DB + LLM" subtitle - Improves clarity of query mode selection "Graph Search" better describes the graph database traversal approach compared to vector-based Pure RAG. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- nvidia/txt2kg/assets/frontend/components/rag-query.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvidia/txt2kg/assets/frontend/components/rag-query.tsx b/nvidia/txt2kg/assets/frontend/components/rag-query.tsx index ae513cd..23249f7 100644 --- a/nvidia/txt2kg/assets/frontend/components/rag-query.tsx +++ b/nvidia/txt2kg/assets/frontend/components/rag-query.tsx @@ -47,7 +47,7 @@ export function RagQuery({ // Update query mode when vectorEnabled changes - but don't override user selection useEffect(() => { - // Only set default mode on initial load, not when user selects Traditional Graph + // Only set default mode on initial load, not when user selects Graph Search if (vectorEnabled && queryMode === 'traditional') { console.log('Not forcing mode change - respecting user selection'); // No longer forcing mode change - let user select what they want @@ -164,7 +164,7 @@ export function RagQuery({
- Traditional Graph + Graph Search Graph DB + LLM