Metadata-Version: 2.4
Name: langchain-near-decrypt-key
Version: 0.1.0
Summary: LangChain Tool - NEAR decrypt key
License: MIT
Project-URL: Repository, https://github.com/aurora-neuro-star/langchain-near-decrypt-key
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: langchain>=0.2.0
Requires-Dist: httpx>=0.27.0

# langchain-near-decrypt-key

LangChain Tool - NEAR decrypt key

## Installation
```bash
pip install langchain-near-decrypt-key
```

## Usage
```python
from langchain_near_decrypt_key import LangchainNearDecryptKeyTool
tool = LangchainNearDecryptKeyTool()
result = tool.invoke({"query": "check_status", "account_id": "alice.near"})
print(result)
```

## Async
```python
result = await tool.ainvoke({"query": "check_status", "account_id": "alice.near"})
```

## License
MIT
