Skip to content
Discussion options

You must be logged in to vote

Hi @sacredvoid, we do not have a native integration for this. I just saw that OpenLit also has an integration. This allows us to send OTel spans to the Langfuse OTel backend to see the basic PUT and GET requests mem0 does.

You can instrument this as follows:

import os
from langfuse import get_client

# Get keys for your project from the project settings page: https://cloud.langfuse.com
os.environ["LANGFUSE_PUBLIC_KEY"] = "pk-lf-..." 
os.environ["LANGFUSE_SECRET_KEY"] = "sk-lf-..." 
os.environ["LANGFUSE_HOST"] = "https://cloud.langfuse.com" # 🇪🇺 EU region
# os.environ["LANGFUSE_HOST"] = "https://us.cloud.langfuse.com" # 🇺🇸 US region

langfuse = get_client()

# Initialize OpenLIT instrument…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by jannikmaierhoefer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
2 participants