Open source. Open possibilities.

A language for
intelligent
programs.

Reasoning, memory, and safe actions.
First-class in the language. Natural in your code.

Python 3.10+ · MIT licensed · Early development

A NEW KIND OF COMPUTATIONSense blue and violet ribbon symbol agent reason act
DETERMINISTIC FOUNDATIONSPROBABILISTIC POSSIBILITIES
A familiar foundation.
A different kind of power.

Python-like syntax

Model-agnostic reasoning

Explicit side effects

Human control

01 / THE LANGUAGE

Reads like code.
Thinks a little further.

Keep the clarity of a programming language.
Add the primitives intelligent programs need.

LESS GLUE. MORE INTENT.

Reasoning is
a language feature.

Choose a model, delegate to it, and ask. Get a structured Answer with a value, confidence, and source.

Explore reasoning ↗
Uses OpenAI — set OPENAI_API_KEY to run it (swap in inference("mock", ...) to try it offline instead).
hello.snsSense
# A model is a value. Reasoning is built in.
model reasoning = inference("openai", "gpt-4o")
set delegation = reasoning

result = ask("What should we build next?")

print(result.value)
print(result.confidence)
print(result.source)
Real Sense syntaxhello, possibility.

03 / DELIBERATE BY DESIGN

Intelligence moves fast.
You set the boundaries.

An action has a lifecycle. Preparing it does not run its effect. Permissions are checked by the interpreter, and the effect happens only when you commit.

Understand the safety model ↗
01
prepare

Describe the effect. Nothing changes yet.

02
verify()

Check the action against your policy.

03
commit()

Re-check permissions. Perform the effect.

Explicit capabilities. Human approval gates. Reversible actions.

YOUR NEXT PROGRAM STARTS HERE

Make something
that makes sense.

Start with an offline model. Explore at your own pace.

Follow the quickstart
FROM ZERO TO SENSE~ 2 MIN
01

Install the language

02

Open the interactive shell

Python 3.10+ required. No API key needed to start.

A young language, built in the open. Sense is in active development. Explore the current implementation and help shape what comes next.

Read the docs ↗