Saccadic is the first public Cognitive Resonance Artifact from the
Saccadic-Liquid Engine (SLE), created by OkeyMeta Ltd.
This release is not a Transformer checkpoint and it is not a repository upload.
It publishes the model state as model.cra plus the Spark runtime needed to
wake that state. The source repository, training pipeline, and internal IP are
not included.
Mission
SLE explores a CPU-first path toward general intelligence where behavior lives
in portable mathematical state instead of a giant framework-bound parameter
dump. Saccadic combines:
Predictive semantic chunking over raw streams instead of BPE tokenization.
Hyperdimensional memory for concept, fact, and tool-state binding.
Liquid continuous-time dynamics for stream surprise and state evolution.
Speech Cortex transitions for learned English, punctuation, emoji, and
response composition.
The long-term objective is simple: build intelligence that can learn, adapt,
act, and surprise us without depending on Transformer-style tokenization,
backprop training loops, or repo-side hidden behavior.
What Is Included
model.cra - the public Cognitive Resonance Artifact.
sle_spark.exe - standalone Spark loader/runtime contract for Windows.
SLE_RELEASE.json - release manifest with public and internal artifact
metadata.
V1 is a compact, auditable first release. It is not presented as a trillion-token
LLM replacement. It is built to prove that the SLE artifact path can carry real
behavior:
Load outside the source repo as model.cra.
Run through Spark without PyTorch, TensorFlow, Transformers, or tokenizers.
Parse raw multilingual/numeric streams such as Saccadicpower٥^٧..
Select a learned custom tool and emit its argument map.
Answer through learned Speech Cortex state with punctuation and slot transfer.
Speak autonomously from raw context using learned route and initiative state.
Follow serialized system-instruction rows without host-side formatting.
Preserve exact-row replay evidence so demonstrations cannot hide row echo.
Know its model identity and creator through artifact facts: Saccadic,
created by OkeyMeta Ltd.
Deployment Paths
1. Local Spark Runtime
Run the artifact directly with the included Spark executable:
.\sle_spark.exe model.cra
This verifies that Spark can load the public artifact and solve the core Liquid
ODE contract outside the source repository.
2. Embedded Runtime
Bundle model.cra with Spark inside a desktop app, local service, research
probe, or edge deployment. Spark is the executable boundary; the intelligence
lives in the artifact.
3. Python Inspection Boundary
The Python examples below require the SLE Python inspection package to be
installed separately from an authorized wheel or source distribution. This HF
model repository intentionally does not include the source repo.
System instructions are learned artifact state. The runtime does not wrap
answers with hidden prompt logic.
python
1from sle.spark import SparkRuntime
2from sle.curriculum import system_instruction_context_text
34runtime = SparkRuntime.load("model.cra")56system_stream = system_instruction_context_text(7"Put deliberation inside <thoughts></thoughts> before the answer.",8"Name one calm color.",9)1011run = runtime.respond_text_stream_generated(12 system_stream,13 tools={},14 dt=0.05,15 max_speech_steps=18,16 compose_speech=True,17 prefer_composed=True,18 avoid_replay=True,19 avoid_texts=(20"<thoughts>Blue is cool.</thoughts> Blue is cool.",21"<thoughts>Blue is cool.</thoughts> I choose Blue is cool.",22"Blue is cool.",23),24)2526ifnot run.success:27raise RuntimeError(run.error)2829print(run.instruction.record_name)30print(run.cognition.steps[0].plan.arguments)31print(run.cognition.final_value)32print(run.response.text)33print(run.response.composed)34print(run.response.trajectory_names)35print(run.response.slot_transfers)36print(run.response.blocked_replay_evidence)37print(run.response.emitted_replay_evidence)
This probe should produce a composed non-exact answer such as:
<thoughts>I choose Blue is cool.</thoughts> Blue is cool.
The exact source rows remain visible as replay evidence; a passing path must not
emit them as the final answer.
Conversational History
Saccadic can receive previous chat turns in the raw stream and select the newest
parseable user turn without scanning backward for an easier answer.
python
1from sle.spark import SparkRuntime
23runtime = SparkRuntime.load("model.cra")45run = runtime.respond_text_stream_generated_with_history(6"User: hello Saccadic. Assistant: I am listening. User: Who created you?",7 tools={},8 dt=0.05,9 max_speech_steps=22,10 compose_speech=True,11 prefer_composed=True,12 avoid_replay=True,13)1415ifnot run.success:16raise RuntimeError(run.error)1718turn = run.turn
19print(run.history_segments)20print(run.selected_symbols)21print(turn.cognition.steps[0].plan.arguments)22print(turn.cognition.final_value["creator"])23print(turn.response.text)24print(turn.response.slot_transfers)
Use Cases
Local CPU-first AI research and artifact inspection.
Tool-calling agents where the model emits auditable argument maps.
Edge deployments that need a compact runtime boundary.
Experiments in tokenizer-free raw stream parsing.
Self-contained AI demos where source repo access is not required.
Safety and instruction-following probes with replay evidence.
Multilingual and typo-tolerant stream experiments.
V1 Evidence
The included stress report records all declared V1 checks as passing:
This is a V1 artifact release. It is a serious step toward the SLE mission, not
a claim that all frontier-model capabilities are solved. The release is designed
to make capability evidence inspectable: selected tool paths, emitted argument
maps, final cognition values, stream chunks, slot transfers, punctuation,
emoji, transition paths, and replay evidence are all visible.
Citation
bibtex
1@software{okeymeta_saccadic_sle_v1,
2 title = {Saccadic: SLE-V1.0-Ω10K-LX Cognitive Resonance Artifact},
3 author = {OkeyMeta Ltd},
4 year = {2026},
5 version = {SLE-V1.0-Ω10K-LX},
6 note = {Saccadic-Liquid Engine public artifact release with Spark runtime}
7}