Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CLI command in docs #1970

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/docs/administration/custom-component.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -391,13 +391,13 @@ The recommended way to load custom components is to set the _`LANGFLOW_COMPONENT

```bash
export LANGFLOW_COMPONENTS_PATH='["/path/to/components"]'
langflow
langflow run
```

Alternatively, you can specify the path to your custom components using the _`--components-path`_ argument when running the Langflow CLI, as shown below:

```bash
langflow --components-path /path/to/components
langflow run --components-path /path/to/components
```

Langflow will attempt to load all of the components found in the specified directory. If a component fails to load due to errors in the component's code, Langflow will print an error message to the console but will continue loading the rest of the components.
Expand Down
4 changes: 3 additions & 1 deletion docs/docs/administration/langfuse_integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ Langfuse is an open-source tracing and analytics tool designed for LLM applicati
Alternatively, you can run the Langflow CLI command:

```bash
LANGFLOW_LANGFUSE_SECRET_KEY=<your secret key> LANGFLOW_LANGFUSE_PUBLIC_KEY=<your public key> langflow
LANGFLOW_LANGFUSE_SECRET_KEY=<your secret key>
LANGFLOW_LANGFUSE_PUBLIC_KEY=<your public key>
langflow
```

If you are self-hosting Langfuse, you can also set the environment variable `LANGFLOW_LANGFUSE_HOST` to point to your Langfuse instance. By default, Langfuse points to the cloud instance at `https://cloud.langfuse.com`.
Expand Down