Enha: local onnx

This commit is contained in:
Grail Finder
2026-03-05 14:13:58 +03:00
parent c65c11bcfb
commit fbc955ca37
5 changed files with 172 additions and 7 deletions

View File

@@ -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)
}
}