From fbc955ca37836553ef4b7c365b84e3dfa859c501 Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Thu, 5 Mar 2026 14:13:58 +0300 Subject: Enha: local onnx --- rag/rag.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rag/rag.go') diff --git a/rag/rag.go b/rag/rag.go index b63cb08..3d0f38f 100644 --- a/rag/rag.go +++ b/rag/rag.go @@ -246,7 +246,7 @@ func (r *RAG) extractImportantPhrases(query string) string { break } } - if isImportant || len(word) > 3 { + if isImportant || len(word) >= 3 { important = append(important, word) } } -- cgit v1.2.3