redhop-win-x64 0.1.0
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/README.md +39 -0
- package/package.json +21 -0
- package/redhop.win32-x64-msvc.node +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# redhop-win-x64
|
|
2
|
+
|
|
3
|
+
This is the **Windows x64** native binary for [**redhop**](https://www.npmjs.com/package/redhop) — a reasoning-aware context runtime for RAG (chunk, retrieve, and allocate the document context an LLM should see, with citations and a Decision Report).
|
|
4
|
+
|
|
5
|
+
## You probably don't want to install this directly
|
|
6
|
+
|
|
7
|
+
The main `redhop` package depends on this package as an
|
|
8
|
+
[optionalDependency](https://docs.npmjs.com/cli/v10/configuring-npm/package-json#optionaldependencies).
|
|
9
|
+
npm will install the correct platform binary for your machine automatically:
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
npm install redhop
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
If you're on a Windows x64 machine, this package will be installed alongside `redhop` so the native binding can load.
|
|
16
|
+
|
|
17
|
+
## What's inside
|
|
18
|
+
|
|
19
|
+
A single file: `redhop.win32-x64-msvc.node` — the [N-API](https://nodejs.org/api/n-api.html)
|
|
20
|
+
addon built from the Rust workspace at
|
|
21
|
+
[github.com/vysakh0/redhop](https://github.com/vysakh0/redhop), compiled for
|
|
22
|
+
`x86_64-pc-windows-msvc` against the stable Rust toolchain via
|
|
23
|
+
[`@napi-rs/cli`](https://github.com/napi-rs/napi-rs).
|
|
24
|
+
|
|
25
|
+
No installer, no postinstall scripts, no network access at install time.
|
|
26
|
+
|
|
27
|
+
## Links
|
|
28
|
+
|
|
29
|
+
- **Main package**: <https://www.npmjs.com/package/redhop>
|
|
30
|
+
- **Source**: <https://github.com/vysakh0/redhop>
|
|
31
|
+
- **Issues**: <https://github.com/vysakh0/redhop/issues>
|
|
32
|
+
- **Changelog**: <https://github.com/vysakh0/redhop/blob/main/CHANGELOG.md>
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
Apache-2.0 © Vysakh Sreenivasan. See the
|
|
37
|
+
[LICENSE](https://github.com/vysakh0/redhop/blob/main/LICENSE) and
|
|
38
|
+
[NOTICE](https://github.com/vysakh0/redhop/blob/main/NOTICE) files in the
|
|
39
|
+
source repository.
|
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "redhop-win-x64",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Windows x64 native binary for redhop — a reasoning-aware context runtime for RAG. Installed automatically by the `redhop` package on Windows x64; not intended to be installed directly.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "Vysakh Sreenivasan",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/vysakh0/redhop.git",
|
|
10
|
+
"directory": "nodejs"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/vysakh0/redhop#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/vysakh0/redhop/issues"
|
|
15
|
+
},
|
|
16
|
+
"os": ["win32"],
|
|
17
|
+
"cpu": ["x64"],
|
|
18
|
+
"main": "redhop.win32-x64-msvc.node",
|
|
19
|
+
"files": ["redhop.win32-x64-msvc.node"],
|
|
20
|
+
"keywords": ["rag", "retrieval", "llm", "context", "nlp", "embeddings", "napi-rs", "windows", "native-binary"]
|
|
21
|
+
}
|
|
Binary file
|