@hyperlite-ai/darwin-arm64 0.2.14 → 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 +43 -30
- package/hl +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,45 +1,58 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @hyperlite-ai/darwin-arm64
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Native macOS Apple Silicon 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
|
-
|
|
9
|
-
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## What is HyperLite?
|
|
13
|
+
|
|
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` (Mach-O, ARM64, macOS).
|
|
10
24
|
|
|
11
|
-
|
|
25
|
+
Built from: `aarch64-apple-darwin` with Rust stable on macOS 14 (Sonoma).
|
|
26
|
+
|
|
27
|
+
## Requirements
|
|
28
|
+
|
|
29
|
+
- macOS 11+ on Apple Silicon (M1 / M2 / M3 / M4)
|
|
30
|
+
- Node.js 16+ (for the npm launcher only)
|
|
31
|
+
|
|
32
|
+
## Usage
|
|
12
33
|
|
|
13
34
|
```bash
|
|
14
|
-
hyperlite
|
|
35
|
+
npm install -g hyperlite-ai # installs this package automatically on Apple Silicon
|
|
36
|
+
hl # launch from Terminal or iTerm2
|
|
37
|
+
hyperlite # same
|
|
15
38
|
```
|
|
16
39
|
|
|
17
|
-
##
|
|
40
|
+
## Note
|
|
18
41
|
|
|
19
|
-
|
|
20
|
-
- A downloaded model (e.g. `ollama pull qwen2.5-coder:14b`)
|
|
21
|
-
- Node.js 16+
|
|
42
|
+
On first launch, macOS Gatekeeper may block the binary if it is not notarised. If you see a security warning, run:
|
|
22
43
|
|
|
23
|
-
|
|
44
|
+
```bash
|
|
45
|
+
xattr -d com.apple.quarantine $(which hl)
|
|
46
|
+
```
|
|
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
|
+
Or go to **System Settings → Privacy & Security** and click "Open Anyway".
|
|
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
CHANGED
|
Binary file
|