summaryrefslogtreecommitdiff
path: root/rag/rag.go
diff options
context:
space:
mode:
Diffstat (limited to 'rag/rag.go')
-rw-r--r--rag/rag.go2
1 files changed, 1 insertions, 1 deletions
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)
}
}