Skip to main content

Lár: The PyTorch for Agents. A 'define-by-run' agentic framework.

Project description

Lár Logo

Lár: The PyTorch for Agents — The First EU AI Act-Ready Agent Execution Engine

PyPI - Version PyPI - Downloads EU AI Act Ready Sponsor

Lár — The First EU AI Act-Ready Agent Execution Engine

The EU AI Act enforcement deadline is August 2026. Teams building AI agents in finance, healthcare, legal, and enterprise need to prove to regulators exactly what their agent did, why, and what it cost — on every run. Existing frameworks cannot do this. Lár can.

Lár is a ground-up agent execution engine where auditability is structural, not an add-on. Every design decision — deterministic graphs, step-level state diffs, cryptographic audit trails, topology validation, human oversight primitives — exists to satisfy EU AI Act requirements out of the box.

[!NOTE] Lár is NOT a wrapper. It does not wrap LangChain, OpenAI Swarm, or any other library. It is a standalone, dependency-lite Python engine optimized for "Code-as-Graph" execution.


The 12 EU AI Act Compliance Primitives

Lár ships a complete Enterprise Compliance Backbone — all 12 primitives required for a conformity assessment under Nannini et al. (2026), the definitive compliance architecture paper for AI agents under EU law:

Article Requirement Lár Primitive
Art. 12 Causal audit logging GraphExecutor → HMAC-SHA256 signed JSON trace
Art. 14 Human oversight interrupt HumanJuryNode + AuthorityLedger (Fourth Tier)
Art. 3(23) Substantial modification guard AdaptiveNode + TopologyValidator + RuntimeStateVersioner
Art. 9 Risk management gate RiskScorerNode + PolicyRegistry
Art. 15(4) JIT privilege minimisation CredentialVault (NHI provisioning)
GDPR Art. 17 PII redaction before signing PIIRedactionEngine
Art. 50(2) Synthetic content marking SyntheticMarkerNode
prEN 18283 Runtime bias detection BiasFilterNode
Art. 14 (fractal) Meaningful HITL in parallel agents — per-branch evidence before consolidation BranchTriageNode
AEPD Rule of 2 Lethal trifecta block LethalTrifectaGuard
Art. 13 Transparency disclosure TransparencyEngine
Step 9 External action inventory ComplianceManifestGenerator
Art. 12/14 Stakeholder authority record AuthorityLedger

Read the EU AI Act Deep Dive → | Nannini et al. (2026) Full Mapping →


See It Running: The Finance Showcase

One command runs a live SME credit decision through all 12 primitives and produces three HMAC-signed audit artefacts:

python examples/compliance/22_eu_ai_act_finance_showcase.py
Step Node Outcome State Changes
0 FunctionalNode (CredentialVault) ✅ success + jit_token_present = True
1 LLMNode (credit risk analysis) ✅ success + ai_output (170 tokens)
2 FunctionalNode (JSON parse) ✅ success + recommendation, model_confidence, risk_level
3 RiskScorerNode ✅ success + computed_oversight_level
4 HumanJuryNode (Risk Officer gate) ✅ success + jury_decision = "approve"
5 FunctionalNode (LethalTrifecta + Transparency) ✅ success + _trifecta_check, ~ drift_report
6 SyntheticMarkerNode ✅ success + final_output (AI-disclaimed)

Every step produces a real Article 12 causal trace, a real Article 14 AuthorityLedger record, and a real Step 9 action inventory — all HMAC-SHA256 signed. PII is stripped before signing.

This is the difference. Every step, every key written, every node that touched state — recorded. No guesswork, no external tooling required.

Full showcase breakdown — execution trace, real JSON artefacts, 12-step coverage map →

Open-source vs. enterprise: All 12 compliance primitives (BranchTriageNode, BiasFilterNode, RiskScorerNode, CredentialVault, etc.) are in lar.compliance and fully open-source under Apache 2.0. The finance showcase uses build_and_run from lar.enterprise, a convenience wrapper in the enterprise tier. Open-source users assemble the same pipeline from primitives — the step-by-step guide walks you through it: Build a Compliant Agent from Scratch →


How It Works: The "Glass Box"

Lár runs one node at a time, yielding a structured audit entry after every step. The execution model is a Python generator — each yield contains the state before, the state diff, token usage, the rendered prompt, and the outcome.

This means:

  1. Instant Debugging: The exact node that failed, the exact data it received, the exact error — all in the log.
  2. Built-in Auditing: A complete, immutable history of every decision and token cost, by default, on every run.
  3. Deterministic Control: Explicit graphs, not probabilistic chat rooms. The same input produces the same execution trace.

Why Lár vs. LangChain / CrewAI

Feature Black Box (LangChain / CrewAI) Glass Box (Lár)
Debugging 100-line stack trace from inside AgentExecutor. Guess what went wrong. Exact node, exact error, exact state — in the log.
Auditability External paid tool (LangSmith) required. Built-in. The GraphExecutor flight log is the audit trail.
Multi-Agent "Chat room" — no guaranteed order, loops possible. Deterministic assembly line — you define the exact path.
Compliance None. No EU AI Act primitives. 12 compliance primitives, cryptographic logs, Art. 14 oversight.
Cost LLM call on every routing step. Code-based routing — $0.00/route.
Scale Crashes at 25 steps (recursion limit). 60+ node graphs run to completion.
Crash Recovery LLM router may branch differently on retry — "resume" is actually a new run. Pure Python routers are deterministic. Same state in, same path out. Resumption is exact.
Core Philosophy Sells "Magic." Sells "Trust."

LangGraph crashes at Step 25 on a 60-node graph:

CRASH CONFIRMED: Recursion limit of 25 reached without hitting a stop condition.
LangGraph Engine stopped execution due to Recursion Limit.

See: examples/comparisons/langchain_swarm_fail.py


Build a Compliant Agent from Scratch

New to Lár? The step-by-step guide walks you through wiring every compliance primitive — from credential vault to HMAC-signed audit artefacts — starting from a blank file. Written for both engineers and AI assistants.

Read the guide → | Live showcase →


Installation

pip install lar-engine

Or from source:

git clone https://github.com/snath-ai/lar.git
cd lar
poetry install

Create a .env file with your model API keys:

GEMINI_API_KEY="..."
OPENAI_API_KEY="..."
ANTHROPIC_API_KEY="..."

Quick Start

pip install lar-engine
lar new agent my-bot
cd my-bot
python agent.py

The @node Decorator (Low Code)

from lar import node, GraphExecutor

@node(output_key="summary")
def summarize_text(state):
    text = state["text"]
    return my_llm.generate(text)

A Full Agent in 10 Lines

from lar import LLMNode, RouterNode, GraphExecutor

classify = LLMNode(model_name="gpt-4o", prompt_template="Classify: {input}", output_key="category")
route = RouterNode(decision_function=lambda s: s.get("category"), path_map={"A": node_a, "B": node_b})
classify.next_node = route

executor = GraphExecutor()
for step in executor.run_step_by_step(classify, {"input": "Hello"}):
    print(f"Step {step['step']} ({step['node']}): {step['outcome']}")

Core Primitives

Primitive What it does
LLMNode Calls any model via LiteLLM. Built-in exponential backoff, token logging, budget enforcement.
RouterNode Deterministic if/else branching via a Python decision_function.
ToolNode Runs any Python function. Separate next_node / error_node paths.
BatchNode Fan-out / fan-in parallelism. Each thread gets an isolated copy.deepcopy of state.
ReduceNode Summarises multi-agent outputs and deletes raw keys — explicit memory compression.
AdaptiveNode Runtime graph composition: LLM generates a GraphSpecTopologyValidator validates → injects subgraph.
HumanJuryNode Art. 14 mandatory interrupt. Blocks execution for human approval. Produces signed AuthorityRecord.
ClearErrorNode Resets last_error to None. Required for deterministic self-correction loops.
@node decorator Converts any Python function into a Lár node.

Universal Model Support

Lár is built on LiteLLM — switch providers by changing one string. Zero refactoring.

# Cloud
node = LLMNode(model_name="gpt-4o", ...)
node = LLMNode(model_name="gemini/gemini-2.5-pro", ...)
node = LLMNode(model_name="claude-opus-4-6", ...)

# Local (Ollama)
node = LLMNode(model_name="ollama/phi4", ...)
node = LLMNode(model_name="ollama/deepseek-r1:7b", ...)

Read the Full LiteLLM Setup Guide →


Reasoning Models (System 2 Support)

Native support for DeepSeek R1, OpenAI o1, and Liquid. <think> tags are first-class citizens — extracted and saved to run_metadata, keeping the main context window clean.

node = LLMNode(
    model_name="ollama/deepseek-r1:7b",
    prompt_template="Solve: {puzzle}",
    output_key="answer"
)
# state['answer'] = "The answer is 42."
# log['metadata']['reasoning_content'] = "<think>First, I calculate...</think>"

Resumable Graphs

Most frameworks cannot reliably resume a crashed execution — not because the feature is missing, but because their routers are probabilistic. On retry, the LLM may branch differently. The "resume" is actually a new run that happens to start with the same input.

Lár's routers are pure Python functions. Same state in, same decision out — deterministically. When Lár resumes at Step 47, it takes exactly the path Step 47 would have taken. The resumption is exact, not approximate.

The GraphExecutor is a Python generator that yields after every node. GraphState is a plain dict — always serialisable, always decoupled from the engine. The causal trace written on every run is not just an audit log; every entry is a resumption checkpoint.

Run Steps Executed Tokens Sent Cost (GPT-4o)
Lár — Resume Step 3 only 302 tokens $0.0006
Competitor — Retry Steps 0+1+3 ~776 tokens $0.0016

At 10,000 runs/day with 40% transient failure rate → $9.48/day saved.

The same property powers HumanJuryNode: the graph halts before an irreversible action, the process can be killed, and when the human responds — hours later if needed — execution resumes from exactly that node with exactly that state. This is what EU AI Act Art. 14 requires in practice.

See: examples/patterns/9_resumable_graph.py


Adaptive Graphs

When graph structure cannot be known at author-time, AdaptiveNode composes a validated subgraph at execution time.

  • LLM generates a GraphSpec (JSON)
  • TopologyValidator checks: cycle detection, tool allowlist, structural integrity
  • Validated subgraph is injected into the live execution path
  • Every spec is logged to the Causal Trace (Art. 3(23))

See: examples/adaptive/


Compliance & Safety

[!IMPORTANT] Who is the "Provider"? Under the EU AI Act (Art. 3), Lár is a software component, not an AI system. The organisation deploying a high-risk agent is the legal Provider. Lár provides the 12 architectural primitives to generate the evidence (audit logs, manifests, oversight records) required for a conformity assessment.

[!WARNING] Legal Disclaimer: Lár is open-source infrastructure, not legal advice. Using Lár does not automatically guarantee compliance. Organisations are solely responsible for legal review and conformity assessments.

What Lár solves:

  • Cryptographic causal traces for every decision (Art. 12)
  • Hardware-level routing to human approval before high-risk actions (Art. 14)
  • Automated external action inventory for adjacent legislation (Step 9)

What Lár cannot solve:

  • Model bias or unsuitability — if you plug in a biased model, Lár records the biased decision accurately; liability remains with the organisation
  • Human negligence — a HumanJuryNode that is rubber-stamped will fail an audit for negligent oversight
  • Data provenance — Lár cannot guarantee training data was legally acquired

Cryptographic Audit Logs

from lar import GraphExecutor

executor = GraphExecutor(
    log_dir="secure_logs",
    hmac_secret="your_enterprise_secret_key"
)
# Run your agent normally. Every log is HMAC-SHA256 signed.

Verify for auditors:

python examples/compliance/11_verify_audit_log.py secure_logs/run_xyz.json your_secret_key
# [+] VERIFICATION SUCCESSFUL  or  [-] VERIFICATION FAILED

Compliance pattern library:


Example Library

1. Basic Primitives (examples/basic/)

# Pattern Concept
1 1_simple_triage.py Classification & Linear Routing
2 2_reward_code_agent.py Code-First Agent Logic
3 3_support_helper_agent.py Lightweight Tool Assistant
4 4_fastapi_server.py FastAPI Wrapper (Deploy Anywhere)

2. Core Patterns (examples/patterns/)

# Pattern Concept
1 1_rag_researcher.py RAG (ToolNode) & State Merging
2 2_self_correction.py "Judge" Pattern & Error Loops
3 3_parallel_execution.py Fan-Out / Fan-In Aggregation
4 4_structured_output.py Strict JSON Enforcement
5 5_multi_agent_handoff.py Multi-Agent Collaboration
6 6_meta_prompt_optimizer.py Prompt Optimisation (Iterative Refinement)
7 7_integration_test.py Integration Builder (CoinCap)
8 8_ab_tester.py A/B Tester (Parallel Prompts)
9 9_resumable_graph.py Time Traveller (Crash & Resume)
10 16_custom_logger_tracker.py Advanced Observability

3. Reasoners & Comparisons (examples/reasoning_models/, examples/comparisons/)

# Pattern Concept
1 1_deepseek_r1.py Native <think> tag parsing
2 2_openai_o1.py High-IQ O1 Planner Nodes
3 3_liquid_thinking.py Fast Local Edge Inferencing
4 langchain_swarm_fail.py Proof of Context Crashes
5 langchain_firewall_cost.py API Cost Explosion (Firewall)
6 langchain_tree_fail.py Agent Cycle Traps

4. Compliance & Safety (examples/compliance/)

# Pattern Concept
1 1_human_in_the_loop.py User Approval & Interrupts
2 2_security_firewall.py Blocking Jailbreaks with Code
3 3_juried_layer.py Proposer -> Jury -> Kernel
4 4_access_control_agent.py Flagship Access Control
5 5_context_contamination_test.py Red Teaming: Social Engineering
6 6_zombie_action_test.py Red Teaming: Stale Authority
7 7_hitl_agent.py Article 14 Compliance Node
8 8_hmac_audit_log.py Immutable Cryptographic Logs
9 9_high_risk_trading_hmac.py Algorithmic Trading (SEC)
10 10_pharma_clinical_trials_hmac.py FDA 21 CFR Part 11 Trial Logic
11 11_verify_audit_log.py Standalone Auditor Script
12 12_post_market_monitoring.py Post-Market Monitoring (Art. 72)
13 12_transparency_disclosure.py Transparency Engine (Art. 13)
14 13_risk_scored_routing.py Risk-Scored Routing (Art. 14)
15 14_runtime_drift_detection.py Drift Detection (Art. 3(23))
16 15_jit_credential_vault.py JIT Credential Vault (Art. 15(4))
17 16_pii_redaction.py PII Redaction (GDPR Art. 17)
18 17_causal_trace_logging.py Causal Trace Logging (Art. 12)
19 18_synthetic_content_marking.py Synthetic Content Marking (Art. 50)
20 19_runtime_bias_detection.py Bias Detection (prEN 18283)
21 20_compliance_manifest.py Compliance Manifest (Step 9)
22 21_authority_and_trifecta.py Rule of 2 Trifecta Guard
23 22_eu_ai_act_finance_showcase.py Full EU AI Act Pipeline Proof
24 23_fractal_compliance_showcase.py Fractal Agent — BatchNode + AdaptiveNode + Art. 14 Early-Exit HITL

5. High Scale & Advanced (examples/scale/, examples/advanced/)

# Pattern Concept
1 1_corporate_swarm.py Stress Test: 60+ Node Graph
2 2_mini_swarm_pruner.py Dynamic Graph Pruning
3 3_parallel_newsroom.py True Parallelism (BatchNode)
4 4_parallel_corporate_swarm.py Concurrent Branch Execution
5 11_map_reduce_budget.py Memory Compression & Token Budgets
6 fractal_polymath.py Recursive Graph Composition (Nested AdaptiveNodes + Parallelism)
7 13_world_model_jepa.py Predictive World Models

6. Adaptive Execution (examples/adaptive/)

See the Adaptive Graphs Docs →

# Pattern Concept
1 1_dynamic_depth.py Adaptive Worker Count (1 Node vs N Nodes)
2 2_tool_inventor.py Runtime Code Generation (sandboxed executor)
3 3_self_healing.py Error Recovery Pipeline (validated recovery subgraph)
4 4_adaptive_deep_dive.py Structural Adaptation (topology determined at runtime)
5 5_expert_summoner.py Domain Subgraph Dispatch (pre-defined expert spec injection)

Showcase Projects

  • snath-ai/DMN — A complete cognitive architecture built on Lár: bicameral mind (Fast/Slow), sleep cycles, episodic memory, catastrophic forgetting solved architecturally.
  • snath-ai/Lar-JEPA — Universal model routing: LLMs, JEPA world models, diffusion models as first-class routable nodes in the same graph.
  • snath-ai/rag-demo — Self-correcting RAG agent with a local vector database.

Agentic IDE Support

Lár is designed for Cursor, Windsurf, and Antigravity. Reference these files to make your IDE an expert Lár architect:

  1. @lar/IDE_MASTER_PROMPT.md — strict typing rules and "Code-as-Graph" philosophy
  2. @lar/IDE_INTEGRATION_PROMPT.md — generate production-ready API wrappers in seconds
  3. @lar/IDE_PROMPT_TEMPLATE.md — fill in your agent's goal and ask the IDE to implement it

Show Your Agents are Auditable

Glass Box Ready

[![Glass Box Ready](https://img.shields.io/badge/Auditable-Glass%20Box%20Ready-54B848?style=flat&logo=checkmarx&logoColor=white)](https://docs.snath.ai)

Author

Lár was created by Aadithya Vishnu Sajeev.

Lár is open-source. If this project helps you, consider supporting its development: Sponsor on GitHub →

Contributing

Read our Contribution Guidelines to report bugs, submit pull requests, and propose new features.

License

Lár is licensed under the Apache License 2.0. Free to use in personal, academic, or commercial projects. Retain the LICENSE and NOTICE files in any distribution.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lar_engine-2.1.0.tar.gz (85.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lar_engine-2.1.0-py3-none-any.whl (112.3 kB view details)

Uploaded Python 3

File details

Details for the file lar_engine-2.1.0.tar.gz.

File metadata

  • Download URL: lar_engine-2.1.0.tar.gz
  • Upload date:
  • Size: 85.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lar_engine-2.1.0.tar.gz
Algorithm Hash digest
SHA256 2f8b84e0875354964aac1e451bb78588bfcfef1e7fd80ce312960f4a77905c10
MD5 0ad32af3e0a46068b3e027edef30c623
BLAKE2b-256 db693577c259f488231329f3391fe4221ca1ed7cb261a7127aee3fdf3989fc42

See more details on using hashes here.

Provenance

The following attestation bundles were made for lar_engine-2.1.0.tar.gz:

Publisher: publish.yml on snath-ai/lar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lar_engine-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: lar_engine-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 112.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lar_engine-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 474b6d8e9d72ccf55764ac632ca380b5b1c22604cf2f9a9d454c58845672625a
MD5 1a8d760302d17795f87bfaa34b4d1041
BLAKE2b-256 e8ea6d47fa74b8388bde9c0f7e9430e77508e7d3d5d38097883ee44619dea899

See more details on using hashes here.

Provenance

The following attestation bundles were made for lar_engine-2.1.0-py3-none-any.whl:

Publisher: publish.yml on snath-ai/lar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page