graphiti/examples/opentelemetry/pyproject.toml
Daniel Chalef 27d4f1097b
Add OpenTelemetry stdout example with Kuzu (#987)
- Created examples/opentelemetry/ with working stdout tracing example
- Uses Kuzu in-memory database for zero-setup requirement
- Demonstrates ingestion and search with distributed tracing
- Updated OTEL_TRACING.md with simplified documentation and Kuzu example
- Uses local editable graphiti-core install for development

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude <noreply@anthropic.com>
2025-10-07 07:29:35 -07:00

13 lines
290 B
TOML

[project]
name = "graphiti-otel-stdout-example"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = [
"graphiti-core",
"kuzu>=0.11.2",
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
]
[tool.uv.sources]
graphiti-core = { path = "../..", editable = true }