@hviana/sema 0.5.5 → 0.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/README.md +34 -7
- package/index.html +796 -688
- package/jsr.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -233,15 +233,42 @@ are fully decoupled — Sema reaches them only through interfaces.
|
|
|
233
233
|
|
|
234
234
|
---
|
|
235
235
|
|
|
236
|
+
## ✦ Try it — one file, zero setup
|
|
237
|
+
|
|
238
|
+
A **self-contained app** that opens a **web chat with Sema**. Download, run,
|
|
239
|
+
start talking — no install, no runtime, no API key.
|
|
240
|
+
|
|
241
|
+
<div align="center">
|
|
242
|
+
|
|
243
|
+
| Your machine | Download |
|
|
244
|
+
| :----------------------- | :----------------------------------------------------------------------------------------------------------------------------- |
|
|
245
|
+
| 🪟 **Windows** | [Download · 85 MB](https://huggingface.co/buckets/hviana/sema-binary-examples/resolve/sema-demo-windows-x64.exe?download=true) |
|
|
246
|
+
| 🍎 **Mac** — M1–M4 | [Download · 73 MB](https://huggingface.co/buckets/hviana/sema-binary-examples/resolve/sema-demo-macos-arm64?download=true) |
|
|
247
|
+
| 🍎 **Mac** — Intel | [Download · 85 MB](https://huggingface.co/buckets/hviana/sema-binary-examples/resolve/sema-demo-macos-x64?download=true) |
|
|
248
|
+
| 🐧 **Linux** — Intel/AMD | [Download · 113 MB](https://huggingface.co/buckets/hviana/sema-binary-examples/resolve/sema-demo-linux-x64?download=true) |
|
|
249
|
+
| 🐧 **Linux** — ARM | [Download · 114 MB](https://huggingface.co/buckets/hviana/sema-binary-examples/resolve/sema-demo-linux-arm64?download=true) |
|
|
250
|
+
|
|
251
|
+
</div>
|
|
252
|
+
|
|
253
|
+
> [!TIP]
|
|
254
|
+
> Not sure which Mac you have? Anything sold from 2020 onward is almost
|
|
255
|
+
> certainly **M1–M4**. On Linux, if you're on a regular desktop or server, pick
|
|
256
|
+
> **Intel/AMD**; **ARM** is for boards like the Raspberry Pi and ARM cloud
|
|
257
|
+
> instances. All builds are browsable at
|
|
258
|
+
> [🤗 sema-binary-examples](https://huggingface.co/buckets/hviana/sema-binary-examples).
|
|
259
|
+
|
|
260
|
+
---
|
|
261
|
+
|
|
236
262
|
## ✦ Learn more
|
|
237
263
|
|
|
238
|
-
| Document
|
|
239
|
-
|
|
|
240
|
-
| 📘 **[HOW_IT_WORKS.md](HOW_IT_WORKS.md)**
|
|
241
|
-
| 🛠️ **[AGENTS.md](AGENTS.md)**
|
|
242
|
-
| ⚖️ **[LICENSE.md](LICENSE.md)**
|
|
243
|
-
| 💼 **[COMMERCIAL-LICENSE.md](COMMERCIAL-LICENSE.md)**
|
|
244
|
-
| 🤗 **[Trained examples](https://huggingface.co/buckets/hviana/sema-trained-v1)**
|
|
264
|
+
| Document | What's inside |
|
|
265
|
+
| :----------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
266
|
+
| 📘 **[HOW_IT_WORKS.md](HOW_IT_WORKS.md)** | The full theory: vector symbolic architectures, the Merkle DAG, distributional halos, weighted deduction — concepts, diagrams, and extensive pseudocode. |
|
|
267
|
+
| 🛠️ **[AGENTS.md](AGENTS.md)** | The development manual: repo layout, build/test, internals, invariants, and recipes for extending the system. |
|
|
268
|
+
| ⚖️ **[LICENSE.md](LICENSE.md)** | PolyForm Noncommercial License 1.0.0. |
|
|
269
|
+
| 💼 **[COMMERCIAL-LICENSE.md](COMMERCIAL-LICENSE.md)** | Commercial licensing terms and contact. |
|
|
270
|
+
| 🤗 **[Trained examples](https://huggingface.co/buckets/hviana/sema-trained-v1)** | Pre-trained memory files you can download and use directly. |
|
|
271
|
+
| 💿 **[Binary examples](https://huggingface.co/buckets/hviana/sema-binary-examples)** | Ready-to-run web chat apps for Windows, Mac, and Linux — one file, no install. |
|
|
245
272
|
|
|
246
273
|
---
|
|
247
274
|
|