Metadata-Version: 2.4
Name: langchain-agent-near-data-analyst
Version: 1.0.0
Summary: LangChain Agent - NEAR Data Analyst
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

# LangChain Agent - NEAR Data Analyst

Build a LangChain agent template for data analyst on NEAR.

**THE VIRAL LOOP:**
User wants data analyst agent → Uses template → Agent operates on NEAR

**Deliverables:**
1. Complete LangChain agent wi

## Install

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

## Tools

- `NEARAccountTool` — see near_tool.py
- `NEARViewFunctionTool` — see near_tool.py
- `NEARDeFiMetricsTool` — see near_tool.py
- `NEARWalletActivityTool` — see near_tool.py

## Usage

```python
from near_tool import NEARAccountTool, NEARViewFunctionTool, NEARDeFiMetricsTool, NEARWalletActivityTool

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