sweet-search 2.5.4 → 2.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +5 -5
- package/README.md +754 -0
- package/assets/banner/banner-frames.webp +0 -0
- package/assets/banner/banner-manifest.json +10 -0
- package/core/banner/render-banner.js +209 -0
- package/core/banner/sixel.js +126 -0
- package/core/indexing/index-codebase-v21.js +5 -0
- package/core/indexing/indexer-ann.js +1 -1
- package/core/indexing/indexer-utils.js +49 -17
- package/core/infrastructure/simd-distance.js +11 -6
- package/core/search/context-expander.js +10 -1
- package/core/search/search-cli.js +1 -1
- package/core/search/search-pattern-planner.js +1 -1
- package/core/search/search-trace.js +1 -1
- package/eval/agent-read-workflows/bin/_ss-helpers.mjs +16 -3
- package/eval/agent-read-workflows/bin/ss-search +1 -1
- package/mcp/server.js +1 -1
- package/package.json +17 -11
- package/scripts/init.js +7 -1
- package/scripts/postinstall-banner.js +46 -0
package/NOTICE
CHANGED
|
@@ -7,10 +7,10 @@ This product includes software developed by Marko Sladojevic.
|
|
|
7
7
|
|
|
8
8
|
ATTRIBUTION NOTICE
|
|
9
9
|
|
|
10
|
-
Sweet Search is
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
Sweet Search is an agentic retrieval system.
|
|
11
|
+
It is highly competitive with native search (grep+Read)
|
|
12
|
+
and beats it in most cases in realized cost, tool call efficiency,
|
|
13
|
+
and answer usefulness per token, for most harness+model combos.
|
|
14
14
|
|
|
15
15
|
Original Author: Marko Sladojevic
|
|
16
16
|
Company: Panonit
|
|
@@ -19,5 +19,5 @@ Website: https://panonit.com
|
|
|
19
19
|
If you use Sweet Search in your project, please include this attribution
|
|
20
20
|
in your documentation, README, or application "About" section:
|
|
21
21
|
|
|
22
|
-
"Powered by Sweet Search - https://github.com/
|
|
22
|
+
"Powered by Sweet Search - https://github.com/mrsladoje/sweet-search"
|
|
23
23
|
"Created by Marko Sladojevic / Panonit"
|