From 6b58a8fd1d10191d5720b037af1137d2a747cfeb Mon Sep 17 00:00:00 2001
From: ai_xiaopei <xiaopei@aisim.cn>
Date: Sun, 26 Jul 2026 10:33:57 +0800
Subject: [PATCH] feat: add graph command for knowledge graph queries

---
 Makefile |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index 31dd685..c772d23 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
 
 # 构建
 build:
-	CGO_ENABLED=1 go build -tags fts5 -o bin/kb .
+	CGO_ENABLED=1 go build -tags fts5 -o bin/kb-cli .
 
 # 安装到 ~/go/bin
 install:
@@ -23,10 +23,10 @@
 
 # 运行示例
 run-search:
-	./bin/kb search 充装 --top 5
+	./bin/kb-cli search 充装 --top 5
 
 run-index:
-	./bin/kb index build
+	./bin/kb-cli index build
 
 run-status:
-	./bin/kb index status
+	./bin/kb-cli index status

--
Gitblit v1.9.1