Musterby Elitery
Integrations

Cognee

Trace Cognee knowledge-graph operations in Muster — uses langfuse as a built-in dependency.

Cognee is open-source AI memory that turns your data into a searchable, reasoning-ready knowledge graph. The Muster (langfuse) integration ships as a built-in dependency.

Setup

pip install cognee
# langfuse installs automatically as a dependency
LANGFUSE_PUBLIC_KEY=pk-lf-...
LANGFUSE_SECRET_KEY=sk-lf-...
LANGFUSE_HOST=https://app.getmuster.io

Add observability decorators

from cognee.modules.observability.get_observe import get_observe
observe = get_observe()

@observe(as_type="generation")
async def my_function(...):
    # your code
    ...

You can decorate any function — Cognee internals or your own pipeline code — and the spans flow into Muster.

See also