Files
strukto-ai--mirage/docs/home/setup/langfuse.mdx
T
Zecheng Zhang 924ec49796 Initial public release: Mirage v0.0.1-alpha.1
A unified virtual filesystem for AI agents. Mount S3, Google Drive,
Slack, Gmail, GitHub, Linear, Notion, Postgres, MongoDB, SSH, and
more behind one filesystem so agents read, write, and pipe across
services with familiar shell commands.

Ships Python (mirage-ai) and TypeScript (@struktoai/mirage-*) SDKs,
a CLI, FUSE mounts, and adapters for OpenAI Agents SDK, Vercel AI
SDK, LangChain deepagents, Pydantic AI, CAMEL, OpenHands, Mastra,
Pi Coding Agent, plus FUSE-based integration with Claude Code and
Codex.

Apache 2.0 licensed.
2026-05-06 10:03:22 -07:00

33 lines
754 B
Plaintext

---
title: Langfuse
icon: chart-line
description: Set up Langfuse API keys for the Langfuse resource.
---
## Credentials
### 1. Get API Keys
#### Langfuse Cloud
1. Go to https://cloud.langfuse.com
1. Select your project -> **Settings** -> **API Keys**
1. Copy the **Public Key** and **Secret Key**
#### Self-hosted
1. Go to your Langfuse instance (e.g., `https://langfuse.yourcompany.com`)
1. Select your project -> **Settings** -> **API Keys**
1. Copy the **Public Key** and **Secret Key**
### 2. Set Environment Variables
```bash
# .env.development
LANGFUSE_PUBLIC_KEY=pk-lf-...
LANGFUSE_SECRET_KEY=sk-lf-...
LANGFUSE_HOST=https://cloud.langfuse.com
```
For Python configuration, see the [Python Langfuse Setup](/python/setup/langfuse) guide.