Metadata-Version: 2.4
Name: langchain-nomad
Version: 0.1.0
Summary: LangChain integration for Nomad headless browser engine — 700× cheaper than Chrome
License: AGPL-3.0
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: langchain>=0.1.0
Requires-Dist: nomad-sdk>=0.2.0
Dynamic: requires-python

# LangChain Nomad

LangChain tool for the Nomad headless browser engine.  
10× cheaper, 10× faster, 100× less memory than Playwright/Chrome.

```python
from langchain_nomad import NomadBrowserTool

# Single tool — works with any LangChain agent
tools = [NomadBrowserTool()]

# Or direct use
result = NomadBrowserTool().run("https://example.com")
# Returns structured page content as string
```
