Use LANGFUSE_BASE_URL instead of LANGFUSE_HOST in CLI credentials docs #37
Closed
johnson-liang-appier
started this conversation in
Ideas & Improvements
Replies: 1 comment
-
|
Fixed in #43, thanks for the headsup! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Describe your idea or feedback
The skill's
references/cli.mddocuments the host environment variable asLANGFUSE_HOST:export LANGFUSE_HOST=https://cloud.langfuse.comHowever, the official Langfuse CLI documentation uses
LANGFUSE_BASE_URL, which is also consistent with the Langfuse SDK ecosystem. The CLI source code (src/cli.ts) confirms it accepts both, withLANGFUSE_BASE_URLchecked first:When users have
LANGFUSE_BASE_URLin their.env(standard for Langfuse SDK projects), the skill's example usingLANGFUSE_HOSTcauses confusion — they assume there's a mismatch and the CLI won't pick it up.What would the ideal outcome look like?
Update
references/cli.mdto useLANGFUSE_BASE_URLas the primary example, consistent with the official docs and the Langfuse SDK ecosystem.LANGFUSE_HOSTcan be mentioned as a legacy alias if desired.Beta Was this translation helpful? Give feedback.
All reactions