shipwithjev

Catalog / Research & data

0467GitHub

OpenSourceJev

Research experiment in local System One decisions through llama.cpp logits projection on consumer hardware.

sabeel111/OpenSourceJevREADME ↗
# OpenSourceJev ⚡

> **A high-performance, local "System One" AI decision engine powered by `llama.cpp` and Qwen.**

> [!IMPORTANT]
> **Research Experiment Notice**: This project is purely an independent **research experiment** and academic exploration into inference-time logits projection, Kahneman System 1 decision architectures, and calibration on consumer hardware. It is not a production service and is not affiliated with or endorsed by TypeSafe AI.

[](https://www.python.org/)
[](https://fastapi.tiangolo.com/)
[](https://github.com/ggerganov/llama.cpp)
[](https://vizdoom.farama.org/)
[](LICENSE)

**OpenSourceJev** is an open-source research experiment exploring a local implementation of the **"System One" AI decision paradigm** popularized by TypeSafe AI's Jev. Instead of using Large Language Models (LLMs) to generate verbose text or stream fragile JSON blobs that require retry loops and regex parsing, OpenSourceJev turns open-weight models (like **Qwen3-1.7B**) into ultra-fast, deterministic, strictly-typed decision engines.

It runs locally on consumer laptops (tested on an RTX 3050 Laptop GPU with 4GB VRAM) delivering sub-100ms structured judgments.

---

## 💡 Why "System One"?

Traditional frontier LLMs (GPT-4o, Claude, o1) represent **"System 2"** thinking: slow, deliberative, autoregressive, token-by-token generation. 

Software architectures and autonomous agents often don't need conversational prose. They need **fast, reliable, probabilistic branching** ("smart `if`-statements"):
* *"Which department handles this support ticket?"*
* *"Does this message violate our safety policy?"*
* *"What tactical action should the agent execute right now?"*

```
Traditional LLM Approach:
[ State ] ──> [ Heavy LLM ] ──> [ Generated JSON string ] ──> [ Regex / Pydantic Par

Also filed under Research & data