Metadata-Version: 2.3
Name: etaoi
Version: 0.0.2
Summary: Agent-native trace SDK for LangChain / LangGraph / deepagents (skeleton)
Keywords: langchain,langgraph,deepagents,tracing,observability,agents
Author: AAIRA / VIZ contributors
License: MIT
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Dist: etaoi-schema>=0.3,<1
Requires-Dist: langchain-core>=1.0,<2
Requires-Dist: anyio>=4
Requires-Dist: msgpack>=1.1.2
Requires-Dist: tenacity>=9
Requires-Dist: websockets>=13,<17
Requires-Dist: livekit-agents>=1.2,<2 ; extra == 'livekit'
Requires-Dist: deepagents>=0.6.1,<0.7 ; extra == 'test'
Requires-Dist: langgraph>=1.1.0,<2 ; extra == 'test'
Requires-Dist: pytest>=8 ; extra == 'test'
Requires-Dist: pytest-asyncio>=0.24 ; extra == 'test'
Requires-Python: >=3.11
Project-URL: Homepage, https://github.com/etaoi/etaoi
Project-URL: Repository, https://github.com/etaoi/etaoi
Provides-Extra: livekit
Provides-Extra: test
Description-Content-Type: text/markdown

# etaoi

Python SDK for [VIZ](../../README.md) — an agent-native trace visualizer for the LangChain
ecosystem and LiveKit voice agents.

> **Status:** Skeleton. This package exists so CI is green from day one; the real
> implementation (LangChain `BaseCallbackHandler` adapter, WebSocket transport,
> MessagePack serialization, background flush) lands in Phase 2 of the
> [delivery roadmap](../../.planning/ROADMAP.md).

When complete, a developer will be able to:

```python
import etaoi

etaoi.attach(my_agent)  # streams telemetry to a local VIZ server
```

For the wire schema this package depends on, see
[`etaoi-schema`](../etaoi-schema/python/README.md).
