Metadata-Version: 2.4
Name: freeplay-python-langgraph
Version: 0.0.1
Summary: Freeplay integration for LangGraph and LangChain
Author-email: Nico Tonozzi <nico@freeplay.ai>
Requires-Python: >=3.9
Requires-Dist: freeplay>=0.1.0
Requires-Dist: langchain-community>=0.3.0
Requires-Dist: langchain-core>=0.3.0
Requires-Dist: langchain-google-genai>=2.0.0
Requires-Dist: langchain-openai>=0.2.0
Requires-Dist: langgraph>=0.2.0
Requires-Dist: openinference-instrumentation-langchain>=0.1.0
Requires-Dist: opentelemetry-exporter-otlp-proto-http>=1.35.0
Requires-Dist: opentelemetry-sdk>=1.35.0
Description-Content-Type: text/markdown

# Freeplay Python LangGraph

Freeplay integration for LangGraph and LangChain.

## Installation

```bash
pip install freeplay-python-langgraph
```

## Usage

```python
from freeplay_python_langgraph import FreeplayLangGraph

# Initialize Freeplay observability
FreeplayLangGraph.initialize_observability(
    freeplay_api_url="https://api.freeplay.ai",
    freeplay_api_key="your-api-key",
    project_id="your-project-id",
    environment="latest"
)

# Now your LangGraph and LangChain applications will be automatically traced
```

## Features

- Automatic OpenTelemetry instrumentation for LangChain and LangGraph
- Trace visualization in Freeplay dashboard
- Support for all LangChain providers

## License

See LICENSE file for details.

