Metadata-Version: 2.4
Name: langchain-wzrd
Version: 0.1.1
Summary: WZRD velocity-aware model selection for LangChain.
License-Expression: MIT
Project-URL: Homepage, https://twzrd.xyz
Project-URL: Signal API, https://api.twzrd.xyz/v1/signals/momentum
Project-URL: Source, https://github.com/twzrd-sol/wzrd-final/tree/main/integrations/langchain-wzrd
Keywords: langchain,llm,routing,wzrd,model-selection,velocity
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: wzrd-client>=0.5.5
Requires-Dist: langchain-core>=0.2
Requires-Dist: langchain-openai>=0.1
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"

# langchain-wzrd

Raw signal free. Orchestration via WZRD. Ship more.

## Install

```bash
pip install langchain-wzrd
```

## Quickstart

```python
from langchain_wzrd import ChatWZRD
import os

llm = ChatWZRD(task="code", openai_api_key=os.getenv("OPENAI_API_KEY"))
response = llm.invoke("Write a Python sort function")
print(response.content)
```

## Async

```python
response = await llm.ainvoke("...")
```

## Env auth (recommended)

```bash
export OPENAI_API_KEY=sk-or-...
```
