tiny vocabulary. big thought.
TypeSafe says Jev isn't an LLM. Let's talk to it anyway. Grug is a tiny cave-chat experiment that makes Jev hold a conversation by repeatedly choosing its next word from a compact vocabulary. What could grug wrong?
The demo now connects to the real Jev API when TYPESAFE_API_KEY is configured. Without a key it falls back to a deterministic mock, so contributors can still run the interface immediately.
Jev is TypeSafe AI's first System One model. Unlike a large language model, it does not generate arbitrary text. You provide a state plus one or more typed questions, and it returns structured answers that code can use directly.
This demo uses the choice primitive: one answer is selected from options defined in advance, accompanied by a probability distribution and confidence value. In the real API, all questions in one request are evaluated independently and in parallel. Grug intentionally runs a grouped tournament for every sequential word, so this is a toy inversion of Jev's intended use—not a recommended production chatbot architecture.
conversation + words so far
│
▼
Jev Choice: "next word?"
│
▼
approved word │ end
│
└── repeat until end
The real request shape this project mirrors is:
{
"state": {
"conversation": [{ "role": "user", "text": "How do I ship faster?" }],
"words_so_far": ["make", "small"]
},
"model": "jev-latest",
"questions": {
"next_word": {
"type": "choice",
"instructions": "Choose the next word in Grug reply.",
"criteria": {
"thing": null,
"first": null,
"end": "The answer is complete."
}
}
}
}
See the official introduction, quick start, state guide, and HTTP API reference for the authoritative interface.
Requirements: Node.js 22.13 or newer.
npm install
cp .env.example .env
npm run dev
Open the local URL printed in the terminal. A production build is equally small:
npm run build
- Keeps a compact 979-word vocabulary in
lib/core-vocabulary.ts, with request builders inlib/jev.ts. - Gives every eligible word a chance through parallel groups of at most 249 options, then asks Jev to choose among each group’s strongest finalists or
end. - Carries the conversation and
words_so_farforward as structured state. - Extracts candidate names, numbers, and terms from user messages, then batches one Jev Noul judgment per non-numeric candidate to decide which words join the conversation vocabulary.
- Always admits numeric tokens and displays accepted and rejected conversation words in the inspector.
- Stops when Jev chooses the dedicated
endcontrol option or after 18 words. - Withholds the three most recent words and words already used twice to prevent repetition loops.
- Validates every returned choice and retries documented
429and529failures. - Shows Jev's real probabilities and confidence in the inspector.
- Offers an ABC mode where Jev selects one character at a time from lowercase
a-z,0-9, apostrophe, space,?, and., plus the separateendend-of-transmission control. - Falls back to
lib/mock-jev.tsonly when no key is configured. - Exposes the same chat action through the experimental WebMCP browser interface when available.
The fallback is deterministic for the same prompt and conversation length, which makes the demo easy to inspect and test.
Create an API key in the TypeSafe console and put it in .env:
TYPESAFE_API_KEY=your_key_here
Do not put the key in a NEXT_PUBLIC_* variable or call the authenticated API directly from browser code. The browser calls the project's server route; only that route talks to TypeSafe.
app/
layout.tsx page metadata and fonts
page.tsx chat UI, trace inspector, and interaction loop
globals.css visual system and responsive layout
api/chat/route.ts server-only Jev request loop and mock fallback
lib/
core-vocabulary.ts compact common-English vocabulary
jev.ts vocabulary, shared types, and Choice request builder
mock-jev.ts deterministic fallback decisions
types/
webmcp.d.ts small browser API type declaration
The public documentation describes Jev as an early-access model for fast, structured decisions. The API accepts a string, object, or array as state; jev-latest is the documented model alias; a Choice answer includes choice, probabilities, and confidence; and Choice supports a defined set of options. Jev is a product of TypeSafe AI. This project is an independent demo and is not affiliated with or endorsed by TypeSafe AI.
Research checked against TypeSafe AI's public documentation on September 17, 2026.
Created by Michael Kotlikov.