Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Set up the Langfuse resource in Python.
aiohttp
import os from mirage import Workspace, MountMode from mirage.resource.langfuse import LangfuseConfig, LangfuseResource config = LangfuseConfig( public_key=os.environ["LANGFUSE_PUBLIC_KEY"], secret_key=os.environ["LANGFUSE_SECRET_KEY"], host=os.environ.get("LANGFUSE_HOST", "https://cloud.langfuse.com"), ) resource = LangfuseResource(config=config) ws = Workspace({"/langfuse/": resource}, mode=MountMode.READ)
public_key
secret_key
host
https://cloud.langfuse.com