@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.
Files changed (3) hide show
  1. package/README.md +44 -31
  2. package/hl.exe +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,45 +1,58 @@
1
- # HyperLite
1
+ # @hyperlite-ai/win32-x64
2
2
 
3
- A terminal-native local LLM chat client. Fast, offline, and agentic runs entirely on your machine using [Ollama](https://ollama.com).
3
+ Native Windows x64 binary for [HyperLite](https://hyperlite.org)terminal-native local AI chat.
4
4
 
5
- ## Install
5
+ > **This is a platform binary package.** Install the main package instead:
6
+ > ```bash
7
+ > npm install -g hyperlite-ai
8
+ > ```
6
9
 
7
- ```bash
8
- npm install -g hyperlite-ai
9
- ```
10
+ ---
10
11
 
11
- ## Run
12
+ ## What is HyperLite?
12
13
 
13
- ```bash
14
- hyperlite
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
- - [Ollama](https://ollama.com) installed and running
20
- - A downloaded model (e.g. `ollama pull qwen2.5-coder:14b`)
21
- - Node.js 16+
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
- ## Features
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
- - Chat with any local Ollama model
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
- ## Supported Platforms
50
+ ## Links
35
51
 
36
- | Platform | Architecture |
37
- |----------|-------------|
38
- | Windows | x64 |
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
- ## Source
56
+ ## License
44
57
 
45
- [github.com/Sean504/HyperLite](https://github.com/Sean504/HyperLite)
58
+ MIT
package/hl.exe CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperlite-ai/win32-x64",
3
- "version": "0.2.13",
3
+ "version": "0.2.15",
4
4
  "description": "HyperLite binary for Windows x64",
5
5
  "os": [
6
6
  "win32"