Metadata-Version: 2.4
Name: aipp-langchain
Version: 0.1.0
Summary: LangChain Tools for AIPP (AI Payment Protocol)
Project-URL: Homepage, https://github.com/aippcore/aipp-langchain
Author-email: AIPP Core <aippcore@gmail.com>
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: httpx>=0.24.0
Requires-Dist: langchain-core>=0.1.0
Description-Content-Type: text/markdown

# AIPP LangChain Tools

Agent-native LangChain tools for AIPP.

## Installation

```bash
pip install aipp-langchain
```

## Usage

```python
import os
from aipp_langchain import AIPPBalanceTool, AIPPChargeTool

api_key = os.environ["AIPP_API_KEY"]

tools = [
    AIPPBalanceTool(api_key=api_key),
    AIPPChargeTool(api_key=api_key)
]

# Provide to LangChain Agent
```
