jigor — System One decision gateway
Ask System One decision models with noul, choice and score questions:
one JSON wire in, typed JSON answers out. von and laya run locally as
ONNX — no API key; jev runs remote on OpenRouter Decisions.
This package installs the jigor console script. It is a Rust binary, not a
Python module — there is nothing to import; call it from the shell,
subprocess, or run it as a service (jigor serve).
Install
uvx jigor --help # one-off, no install
uv tool install jigor # ~/.local/bin/jigor
pip install jigor # or: pipx install jigor
Quick start
uvx jigor ask --model von <<'JSON'
{
"state": { "error": "Disk volume /var/log at 98% capacity." },
"questions": {
"requires_intervention": {
"type": "noul",
"instructions": "Does this disk space condition require operational intervention?"
}
}
}
JSON
{"answers":{"requires_intervention":{"noul":0.7822,"type":"noul"}},"backend":"local","model":"von-1.0.0"}
Every question carries instructions plus an optional criteria (object or
list) that spells out how to judge the state. Answer shapes are the same on
every backend:
noul→{"type":"noul","noul":0.7822}— probability of yes in[0, 1]choice→{"type":"choice","choice":"refund","confidence":0.91,"probabilities":{...}}score→{"type":"score","score":1.0,"confidence":0.7,"probabilities":{...},"legend":{...}}
{
"state": "Invoice charged twice for order #4471.",
"questions": {
"domain": {
"type": "choice",
"instructions": "Classify the root cause domain.",
"criteria": { "billing": "Invoices, payments, refunds", "infrastructure": "Database, network, hardware" }
},
"severity": {
"type": "score",
"instructions": "Assess degradation level.",
"criteria": ["Nominal operation", "Degraded performance", "Critical risk"]
}
}
}
From Python: the HTTP gateway
jigor serve --host 127.0.0.1 --port 8000
import requests
r = requests.post("http://127.0.0.1:8000/v1/systemone", json={
"model": "von-1.0.0",
"state": {"error": "Disk volume /var/log at 98% capacity."},
"questions": {
"requires_intervention": {
"type": "noul",
"instructions": "Does this disk space condition require operational intervention?",
}
},
})
r.json()["answers"]["requires_intervention"]["noul"] # 0.7822
GET /healthz returns {"status":"ok"}; POST /v1/systemone takes the same
body as jigor ask.
Models
--model takes an alias (von, laya, jev, jev-latest) or a full id
(von-1.0.0, typesafe/jev-1.13); jigor models lists every provider ×
model pair. The local ONNX models download from Hugging Face to
~/.cache/huggingface on first use and are cached afterwards; the remote
jev backend needs OPENROUTER_API_KEY.
Platforms
- macOS —
macosx_11_0universal2 wheel (Apple Silicon + Intel) and Windows x86_64 — prebuilt binary, nothing to compile. - Linux — sdist only:
pipbuilds the Rust binary at install time (needs rustup, a few minutes; ONNX Runtime prebuilts are downloaded during the build). No manylinux wheel yet — the ort prebuilt requires glibc ≥ 2.38.
The wheels carry no Python dependencies (py3-none-<platform> tags).
Source, Rust crates and npm packages: https://github.com/Partysun/jigor
Release files for jigor 0.1.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| jigor-0.1.4.tar.gz | 85.3 kB | Details |
Built distributions (wheels)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| jigor-0.1.4-py3-none-win_amd64.whl | Python 3 | none | Windows x86-64 | Details |
| jigor-0.1.4-py3-none-macosx_11_0_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl | Python 3 | none | macOS 11.0+ universal2 (ARM64, x86-64), macOS 11.0+ x86-64, macOS 11.0+ ARM64 | Details |
Total release size: 25.5 MB
Release files / jigor-0.1.4.tar.gz
| Download URL | jigor-0.1.4.tar.gz |
|---|---|
| Size | 85.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
77b256943f1a0a1031cd0d8ae51773e9eb0d9d9ef5bea8582ede956e342a9582
|
|
BLAKE2b-256 checksum How to use checksums |
ff811a4e102b337d356f7cd2bc67fb38d963ef75ca1457393446c8f4c6330c50
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Debian GNU/Linux","version":"13","id":"trixie","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / jigor-0.1.4-py3-none-win_amd64.whl
| Download URL | jigor-0.1.4-py3-none-win_amd64.whl |
|---|---|
| Size | 9.0 MB |
| Tags | Python 3 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
1701031f2231d6fa16a42a50b33192eb652e95067b63e345532f010d742175df
|
|
BLAKE2b-256 checksum How to use checksums |
f59ec80bc48b1f616ca6465f36fd1ce08f86967f1fa5f08d6aeca14821dfa5b1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / jigor-0.1.4-py3-none-macosx_11_0_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl
| Download URL | jigor-0.1.4-py3-none-macosx_11_0_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl |
|---|---|
| Size | 16.5 MB |
| Tags | Python 3 macOS 11.0+ ARM64 macOS 11.0+ universal2 (ARM64, x86-64) macOS 11.0+ x86-64 |
|
SHA-256 checksum How to use checksums |
3f5c475ecd37476a2b4acdad5f1ed66233885e768c6eaac4db300a9b25971d60
|
|
BLAKE2b-256 checksum How to use checksums |
6777c7e136cec12a6a041683d14d1c50fbe7feec412256db8bb36f1fcf9268e0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|