Skip to main content

Lelu · Python SDK

Python client for Lelu — the confidence-aware authorization engine for autonomous AI agents.

Author: Abenezer Getachew
Maintainer: Abenezer Getachew

Installation

pip install lelu-agent-auth-sdk

Quick start

Option 1: Zero-config local (recommended)

Run the local engine once — it self-generates its key and policy in ~/.lelu, no account needed:

npx -y lelu-mcp start

Then create one shared instance and import it everywhere. With no arguments, lelu() discovers that engine automatically:

import asyncio
from lelu import lelu

auth = lelu(actor="invoice_bot")   # zero-config: finds the local engine

async def main():
    result = await auth.authorize(tool="invoice:create")
    if result.decision == "allow":
        ...  # proceed
    elif result.decision == "human_review":
        # Queued for a human. Don't just wait for "approved" and then act —
        # an approval is bound to the request it approved, so pass the same
        # request back and let the engine confirm nothing changed.
        outcome = await auth.wait_and_redeem(result, tool="invoice:create")
        if not outcome.allowed:
            raise PermissionError(outcome.reason)
        ...  # proceed
    else:
        raise PermissionError(result.reason)

asyncio.run(main())

The instance exposes the full client as auth.api (tokens, review queue, audit, policies): await auth.api.mint_token(...).

Option 2: Self-hosted or cloud engine

Point the same factory at any engine with explicit config — or set LELU_BASE_URL / LELU_API_KEY and keep calling lelu() with no arguments:

auth = lelu(
    base_url="https://your-engine.example.com",
    api_key=os.environ["LELU_API_KEY"],
    actor="invoice_bot",
)

LeluClient(...) from earlier versions keeps working unchanged — auth.api is that same client.

API

Method Description
agent_authorize(req) Confidence-aware agent authorization
authorize(req) Human RBAC authorization
mint_token(req) Mint a JIT-scoped JWT
revoke_token(token_id) Revoke a token immediately
is_healthy() Health-check the engine

License

MIT

Download files

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

Source Distribution

lelu_agent_auth_sdk-0.4.41.tar.gz (65.6 kB view details)

Uploaded Source

Built Distribution

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

lelu_agent_auth_sdk-0.4.41-py3-none-any.whl (51.0 kB view details)

Uploaded Python 3

File details

Details for the file lelu_agent_auth_sdk-0.4.41.tar.gz.

File metadata

  • Download URL: lelu_agent_auth_sdk-0.4.41.tar.gz
  • Upload date:
  • Size: 65.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for lelu_agent_auth_sdk-0.4.41.tar.gz
Algorithm Hash digest
SHA256 bfff74a63fd759017fe5530517dce4dbb4d9fc62bd3511bfd7d561ca6cc8d7ad
MD5 3af5fd9f830d4c1ea0ed88598994d124
BLAKE2b-256 7089ec5a6b5a512c4fe4fa19037328600e8fa06ee6405d3b1e662e02018d8ad8

See more details on using hashes here.

File details

Details for the file lelu_agent_auth_sdk-0.4.41-py3-none-any.whl.

File metadata

File hashes

Hashes for lelu_agent_auth_sdk-0.4.41-py3-none-any.whl
Algorithm Hash digest
SHA256 b80cb103e40daed5315773c5270718d441ba322e7977610ed590789fad267d9c
MD5 670ba6f8897479bf637a813d5a1b0e9a
BLAKE2b-256 a39ec62d225699269ff7f8748e44b4b57e2cd62fb30d5146a1f6fe71c9c9ad49

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.4.41 This release

2 files

0.4.4

2 files

0.4.3

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.67

2 files

0.3.66

2 files

0.3.65

2 files

0.3.64

2 files

0.3.63

2 files

0.3.62

2 files

0.3.61

2 files

0.3.6

2 files

0.3.5

2 files

0.3.0

2 files

0.2.0

2 files

0.1.9

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page