@hyperlite-ai/win32-x64 0.2.13 → 0.2.15
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 +44 -31
- package/hl.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,45 +1,58 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @hyperlite-ai/win32-x64
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Native Windows x64 binary for [HyperLite](https://hyperlite.org) — terminal-native local AI chat.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
> **This is a platform binary package.** Install the main package instead:
|
|
6
|
+
> ```bash
|
|
7
|
+
> npm install -g hyperlite-ai
|
|
8
|
+
> ```
|
|
6
9
|
|
|
7
|
-
|
|
8
|
-
npm install -g hyperlite-ai
|
|
9
|
-
```
|
|
10
|
+
---
|
|
10
11
|
|
|
11
|
-
##
|
|
12
|
+
## What is HyperLite?
|
|
12
13
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
HyperLite is a Rust TUI that runs AI models entirely on your local hardware. No cloud, no API keys, no telemetry.
|
|
15
|
+
|
|
16
|
+
- Offline-first — works without internet after the initial model download
|
|
17
|
+
- Agentic — the model can read/write files, run shell commands, search the web
|
|
18
|
+
- Connects to llamafile (auto-managed), llama.cpp, LM Studio, KoboldCpp, vLLM, and more
|
|
19
|
+
- Persistent multi-session history in SQLite
|
|
20
|
+
|
|
21
|
+
## Contents
|
|
22
|
+
|
|
23
|
+
This package contains a single precompiled binary: `hl.exe` (PE32+, Windows x64).
|
|
24
|
+
|
|
25
|
+
Built from: `x86_64-pc-windows-msvc` with Rust stable.
|
|
16
26
|
|
|
17
27
|
## Requirements
|
|
18
28
|
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
29
|
+
- Windows 10 or 11 (x64)
|
|
30
|
+
- Node.js 16+ (for the npm launcher only)
|
|
31
|
+
- A terminal that supports VT sequences — **Windows Terminal** recommended
|
|
32
|
+
|
|
33
|
+
## Usage
|
|
34
|
+
|
|
35
|
+
```powershell
|
|
36
|
+
npm install -g hyperlite-ai # installs this package automatically on Windows
|
|
37
|
+
hl # launch from PowerShell or Windows Terminal
|
|
38
|
+
hyperlite # same
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Note on terminals
|
|
22
42
|
|
|
23
|
-
|
|
43
|
+
HyperLite renders a full TUI using crossterm and Windows Console API. It works in:
|
|
44
|
+
- Windows Terminal ✓ (recommended)
|
|
45
|
+
- PowerShell 7 in Windows Terminal ✓
|
|
46
|
+
- Git Bash / WSL terminal ✓ (runs the Windows binary via interop)
|
|
24
47
|
|
|
25
|
-
|
|
26
|
-
- Agentic coding tools — read, write, edit, search files directly from chat
|
|
27
|
-
- Multi-session history with persistent storage
|
|
28
|
-
- Tabbed command palette (Ctrl+P)
|
|
29
|
-
- Visual folder browser (Ctrl+O) — open any repo as working directory
|
|
30
|
-
- Download models from inside the app
|
|
31
|
-
- Syntax-highlighted responses with markdown rendering
|
|
32
|
-
- Hardware detection — recommends models for your GPU/RAM
|
|
48
|
+
Legacy `cmd.exe` may have rendering issues.
|
|
33
49
|
|
|
34
|
-
##
|
|
50
|
+
## Links
|
|
35
51
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
| Linux | x64 |
|
|
40
|
-
| macOS | Apple Silicon (arm64) |
|
|
41
|
-
| macOS | Intel (x64) |
|
|
52
|
+
- [hyperlite.org](https://hyperlite.org)
|
|
53
|
+
- [Source](https://github.com/Sean504/HyperLite)
|
|
54
|
+
- [Full documentation](https://github.com/Sean504/HyperLite/blob/main/DOCS.md)
|
|
42
55
|
|
|
43
|
-
##
|
|
56
|
+
## License
|
|
44
57
|
|
|
45
|
-
|
|
58
|
+
MIT
|
package/hl.exe
CHANGED
|
Binary file
|