Metadata-Version: 2.4
Name: wayforth-langgraph
Version: 0.9.0
Summary: LangGraph drop-in adapter for Wayforth — one import, one init, execution via proxy
Project-URL: Homepage, https://wayforth.io
Project-URL: Repository, https://github.com/WayforthOfficial/wayforth
Project-URL: Documentation, https://wayforth.io/guide/
Author: Wayforth Technologies Inc.
License: BSL-1.1
Keywords: agents,ai,langchain,langgraph,tools,wayforth
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27
Requires-Dist: langchain-core>=0.3
Description-Content-Type: text/markdown

# wayforth-langgraph

LangGraph drop-in adapter for Wayforth — one import, one init, execution via proxy.

## Install

```bash
pip install wayforth-langgraph
```

## Usage

```python
from wayforth_langgraph import WayforthTool
from langgraph.prebuilt import create_react_agent

wayforth = WayforthTool(api_key=os.environ["WAYFORTH_API_KEY"])
agent = create_react_agent(llm, tools=[wayforth])
```

Get an API key at [wayforth.io/signup](https://wayforth.io/signup).
