Metadata-Version: 2.4
Name: llm4agents-sdk
Version: 2.0.0
Summary: Python SDK for llm4agents.com — gasless AI agent infrastructure
License: MIT
Requires-Python: >=3.10
Requires-Dist: eth-account>=0.13.0
Requires-Dist: httpx[http2]>=0.27.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: respx>=0.21.0; extra == 'dev'
Description-Content-Type: text/markdown

# llm4agents-sdk

Python SDK for [llm4agents.com](https://llm4agents.com) — gasless AI agent infrastructure.

## Install

pip install llm4agents-sdk

## Quick start

```python
import asyncio
from llm4agents import LLM4AgentsClient

async def main():
    client = LLM4AgentsClient(api_key="sk-proxy-...")
    conv = client.chat.conversation({"model": "openai/gpt-4o"})
    result = await conv.say("Hello!")
    print(result.content)

asyncio.run(main())
```

## Version

This SDK tracks the TypeScript SDK. Version parity is maintained via CONTRACT.md in the TS SDK repo.
