Metadata-Version: 2.4
Name: authsec-langchain-sdk
Version: 0.1.1
Summary: AuthSec identity + delegation for LangChain agents
Author-email: AuthSec Developers <dev@authsec.ai>
License: MIT
Requires-Python: >=3.10
Requires-Dist: httpx>=0.20.0
Requires-Dist: langchain-core>=0.1.0
Description-Content-Type: text/markdown

# authsec-langchain-sdk

AuthSec identity, delegation, and CIBA approval for LangChain agents.

## Installation

```bash
pip install authsec-langchain-sdk
```

## Quick Start

```python
from authsec_langchain import AuthsecClient, AuthsecConfig

client = AuthsecClient(AuthsecConfig(
    base_url="https://prod.api.authsec.ai",
    client_id="your-agent-client-id"
))

# Request a delegation token
token = client.get_delegation_token()
print(token)
```
