924ec49796
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.
33 lines
754 B
Plaintext
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.
|