AI That Doesn't Talk: Where Jev Fits in Technical Writing

Most of a technical writer's day isn't writing. It's deciding. Jev is a new AI model from TypeSafe that classifies, scores, and makes structured decisions — and it may fit documentation work better than chat AI.

Team Docuwiz

Documentation Experts

14 min read

Table of Contents

Loading…

Share this post

Sign Up for Docuwiz

Experience the magic of collaborative documentation with Docs-As-Code Workflow

Everyone seems to be talking about Jev right now. TypeSafe, a new AI lab, released the model in September 2026, and most of the attention has gone to what makes it unusual: Jev doesn't write. It only makes decisions.

For technical writers, that makes it worth looking at for a different reason.

Most of a technical writer's day isn't writing. It's deciding. Which pages need attention? Which release actually needs documentation? Which descriptions are too vague? Which pages are stale? Which reader comments should be fixed first? Which pieces of content are clear enough to be consumed safely by an AI agent?

We've been using chat-style AI tools for these decisions, and they're often an awkward fit. You ask a yes-or-no question and get three paragraphs back. You ask the same question twice and get two different answers. And running that kind of workflow across a thousand pages can get expensive quickly.

Jev takes a different approach. It doesn't draft, rewrite, or summarize. It classifies, scores, and makes structured decisions.

That sounds like a limitation, and it is one. But for a surprising amount of documentation work, it may be exactly what you need.

This guide explains what Jev is in plain terms, where it fits into a documentation team's work, where it doesn't, and how you can think about using it alongside a documentation workflow like Docuwiz.

Think of it as a form with checkboxes

A chat AI is like asking a colleague a question and waiting while they talk it through.

A model like Jev is more like handing someone a form with checkboxes. They read the material once, tick every box at the same time, and hand the form back.

You give Jev two things:

  1. The material: a doc page, a paragraph, a reader comment, a changelog entry.

  2. The questions: written by you, each with a fixed set of possible answers.

Jev answers every question at once and sends back structured answers your tools can act on immediately. No paragraphs, no "Great question!", nothing to copy and clean up.

There are three kinds of questions you can ask:

Question type

What it asks

Documentation example

Choice

Which of these options fits?

"Is this page a tutorial, a how-to guide, a reference, or an explanation?"

Score

Where does this fall on a scale?

"How clear is this introduction: confusing, okay, or clear?"

Yes/No (TypeSafe calls this a Noul)

Is this statement true?

"Does this page mention a feature that was removed?"

Every answer comes with a confidence level. That's the most useful part for docs teams, and we'll come back to it.

Why speed and price change what's possible

Two numbers explain why Jev is worth paying attention to.

TypeSafe reports that it answers in roughly 70 to 500 milliseconds, and that input costs $0.042 per million tokens, with no separate charge for the answers. Those are TypeSafe's own figures, so they're still vendor-reported rather than independently established benchmarks.

Why does this matter to a writer?

Because it changes what's affordable to check.

Right now, docs reviews are often sampled. Someone spot-checks a few pages before a release, a few API descriptions get reviewed, and the rest depends on the team's process holding together.

At very low per-check cost, you can start thinking differently. Instead of asking whether a writer has time to review every page, you can ask whether every page can be checked automatically and only the uncertain ones sent to a writer.

That's a different kind of quality control.

Where technical writers can use it

Here's where Jev fits into the work documentation teams actually do.

None of these require Jev to write a single word. They all ask it to sort, check, or flag.

Sorting and organizing content

Classifying content types. If your team follows a framework like Diátaxis — tutorials, how-to guides, reference, explanation — Jev can label every page in your docs set.

Pages that mix types, like a tutorial that turns into a reference halfway through, may show up as low-confidence answers. Those are often the pages that need restructuring.

Tagging audience level. Beginner, intermediate, or advanced? Label every page consistently, then check whether your "Getting Started" section accidentally contains advanced material.

Placing new pages in navigation. Give Jev your list of sections with a one-line description of each, and it can suggest where a new page belongs. Different writers stop filing similar content in different places.

Checking quality at scale

Finding empty descriptions. Every API reference has entries like:

user_id: The user ID

A yes/no question such as "Does this description only repeat the field name?" can find them across an entire reference in one pass, so you know exactly what needs rewriting.

Checking your style guide. Turn style rules into questions.

"Does this paragraph address the reader directly as 'you'?"

"Does this step contain more than one action?"

"Does this page use the term 'sign in' rather than 'log in'?"

Jev won't replace a style linter for exact word matches, but it can help with the rules that require some judgment.

Scoring pages for clarity. Ask several narrow questions per page:

Is the introduction clear?

Are prerequisites stated?

Does it explain what happens when something goes wrong?

Combine the answers into a quality score per page, and you have a clearer view of where to spend your editing time.

Keeping docs up to date

Deciding which changes need docs. When engineering ships a change, ask: "Does this change affect anything a user sees or does?"

Only the changes that need documentation land in your queue.

Labeling release notes. Is this change breaking, a new feature, a deprecation, or a fix?

Jev sorts each item, and anything it's unsure about goes to you for a closer look. Mislabeling a breaking change is one of those mistakes that can create far more work later, so this is where the confidence level becomes useful.

Spotting stale pages. Give Jev a list of recently removed or renamed features and ask whether each page mentions any of them.

You get a list of pages to update instead of waiting for readers to find them.

Listening to readers

Sorting page feedback. Those "Was this page helpful?" comments pile up because nobody has time to read them all.

Jev can sort every one: wrong information, missing information, confusing, broken link, not about the docs, or praise.

The "wrong information" pile gets fixed first.

Finding gaps from search and support. Classify what readers search for and what they ask support.

Clusters of questions with no matching page are your next articles. Repeated confusion about one topic tells you which existing page isn't working.

Spotting interested buyers. Questions about pricing, rate limits, or plan comparisons often come from people evaluating your product. Sorting those out and passing them to sales or developer relations can make documentation useful beyond support.

Keeping your docs chatbot honest

If your docs site has an AI assistant, Jev can't answer the questions, but it can check the work of the model that does.

Before the answer: decide whether the question belongs to docs, support, or sales, and route it.

During the answer: check which retrieved pages are actually relevant, and drop the ones that aren't.

After the answer: check whether the pages the chatbot cited actually support what it said.

That last check matters most.

A chatbot that confidently describes a feature you don't have damages reader trust faster than having no chatbot at all.

And this becomes even more important as documentation starts being used by agents, not only by people.

What changes when agents start reading your docs?

A human developer can often compensate for weak documentation.

They can inspect the code, search another page, ask someone on Slack, or try the API and see what happens.

An agent has less room for that kind of improvisation.

If the documentation is ambiguous, incomplete, stale, or missing important constraints, the agent may simply choose the wrong action.

That creates a new set of questions for documentation teams:

  • Is this endpoint description specific enough to distinguish it from similar endpoints?

  • Are required permissions clearly documented?

  • Are risky actions clearly identified?

  • Are prerequisites explicit?

  • Are errors, retries, and recovery behaviour explained?

  • Does this page contain information about a feature that no longer exists?

  • Is there enough context for an agent to decide when this API should — and should not — be used?

These are good examples of where Jev could help.

It doesn't make the documentation agent-ready by itself. It can, however, help teams continuously check whether the information an agent depends on is present, clear, and current.

That matters because the more documentation becomes part of the execution path for AI systems, the less practical it is to rely only on occasional manual reviews.

The confidence level is the real feature

Every Choice and Score answer comes with a confidence level.

That lets you set simple rules:

  • High confidence: act automatically. Label the page, file the comment, tag the release note.

  • Low confidence: send it to a person.

This is how Jev fits into a team without taking anything out of your hands.

The obvious cases handle themselves.

The borderline cases — the ones that genuinely need a writer's judgment — come to you.

You spend your review time on the 10% that needs it instead of skimming the 90% that doesn't.

Using Jev alongside Docuwiz

This is also where it becomes useful to think about Jev as part of a documentation workflow rather than as a replacement for the tools you already use.

If your documentation lives in Docuwiz, for example, Jev can sit alongside that workflow as a decision and checking layer.

A simple setup could work like this.

Your API references, guides, versions, and documentation workflow remain in Docuwiz.

Jev evaluates narrow questions against the content:

Is this page stale?

Does this API description explain enough?

Is this content a tutorial or a reference?

Are permissions documented?

Does this page contain enough information for an agent to choose the right API?

High-confidence answers can be handled automatically.

Low-confidence answers go back to the technical writer.

The writer then makes the actual change in Docuwiz: rewriting the description, updating the guide, fixing the example, adding the missing context, or correcting the documentation.

The next time the content changes, the same checks can run again.

That's the more useful way to think about the combination.

Jev helps decide what needs attention. Docuwiz remains the place where the documentation is managed, improved, reviewed, and published.

You don't need one tool to do everything.

What Jev can't do

Being clear about the limits will save you frustration.

It doesn't write. It can't draft a description, suggest a better sentence, or summarize a page. It flags; you — or a writing AI — fix.

"Doesn't hallucinate" means less than it sounds. Jev can only pick from the answers you gave it, so it never invents a category or returns something outside those choices. But it can still pick the wrong answer, confidently. That's why the confidence rules above matter, and why you should test it before trusting it.

It doesn't explain itself. You get an answer and a confidence level, not a reason. If you need to know why something was flagged, write questions specific enough that the flag explains itself.

It reads literally. It answers the question you wrote, not the one you meant. "Is this page outdated?" is too vague. "Does this page mention version 2 of the API?" works.

It's not good with numbers or dates. Counting, comparing dates, and checking whether a number is in a range are better done by a simple script.

It works best on small pieces. Give it one page or one section at a time, not your whole docs site at once. Extra material it doesn't need makes its answers worse.

It's new. Jev is in early access, and the impressive speed and cost comparisons come from TypeSafe's own testing. They're promising, but independent testing is still catching up.

Writing the questions is a writing job

Here's the part that should interest technical writers most.

Jev's accuracy depends heavily on how well the questions are written: clear wording, precise answer options, a one-line definition for each option, no double negatives, one idea per question.

That's what technical writers do every day.

We write instructions that can't be misread.

We define terms precisely.

We break complicated things into single steps.

TypeSafe's own testing shows the same pattern for every AI model they tried: splitting one big, vague request into several small, precise questions produced much better results. In one example, accuracy increased from 18% to 54%.

An engineer can connect Jev to a publishing pipeline.

Writing questions that get reliable answers is the part documentation teams are particularly well placed to own.

How to try it

You don't need a big project to find out whether this works for your team.

  1. Pick one repetitive decision you make every week. Sorting page feedback or labeling release notes are good first choices.

  2. Collect 50 real examples and note what the right answer was for each.

  3. Write your question and answer options the way you'd write them for a new team member.

  4. Ask an engineer to run the examples through Jev. TypeSafe provides tools for Python and JavaScript.

  5. Look at what it got wrong. If the wrong answers had low confidence, your confidence rule will catch them. If they had high confidence, reword the question and try again.

You could start even more narrowly if your goal is agent-ready documentation.

Pick 50 API descriptions and ask one question:

"Does this description contain enough information to distinguish when this endpoint should be used?"

See what gets flagged.

Then inspect the results yourself.

The point is not to automate everything on day one. It is to find the decisions that are repetitive enough to automate safely.

Documentation has always involved more deciding than writing.

Jev is interesting because, for the first time, some of that deciding can be checked across every page, every time, while the difficult calls still come back to the writer.

And as documentation increasingly becomes something AI agents act on rather than something only humans read, that continuous checking layer becomes even more useful.

The writing still matters.

But so does making sure the documentation is clear enough, current enough, and structured enough for both people and machines to trust it.

Written by

Team Docuwiz

Documentation Experts

The Docuwiz team helps developer-focused companies build documentation their users actually love — from API references to onboarding guides and everything in between.

Recent Blogs