Metadata-Version: 2.4
Name: lagi-sdk
Version: 0.1.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Summary: Developer SDK for Liumi Autonomous General Intelligence (LAGI) runtime.
Author-email: Liumi Corporation <dev@liumicorporation.com>
Requires-Python: >=3.9
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# lagi-sdk

**Developer SDK for Liumi Autonomous General Intelligence**

Load `.lagi` binary agent containers and execute continuous thought loops from Python.

```python
from lagi_sdk import LagiRuntime

async def main():
    rt = await LagiRuntime.load("agent.lagi")
    print(rt.summary)
    out = rt.execute("what's the most efficient next step?")
    print(out)
```

Compiled native binary with symbols stripped and LTO — no source leaks through PyPI.

