Metadata-Version: 2.4
Name: langchain-near-price
Version: 1.0.0
Summary: Build LangChain Tool: NEAR Price & Market Data
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: langchain>=0.2
Requires-Dist: langchain-openai>=0.1
Requires-Dist: requests>=2.31
Requires-Dist: pydantic>=2.0

# Build LangChain Tool: NEAR Price & Market Data

## Overview
Create a LangChain tool that provides real-time NEAR price data, market metrics, and historical trends for agent applications.

## Why This Matters
Agents need market data to make informed

## Install

```bash
pip install -r requirements.txt
```

## Tools

- `NEARAccountTool` — see near_tool.py
- `NEARViewFunctionTool` — see near_tool.py
- `NEARPriceTool` — see near_tool.py
- `NEARPriceAlertTool` — see near_tool.py

## Usage

```python
from near_tool import NEARAccountTool, NEARViewFunctionTool, NEARPriceTool, NEARPriceAlertTool

tool = NEARAccountTool()
result = tool._run(account_id='example.near')
print(result)
```
