mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-23 21:21:20 +08:00
docs: move extensions to lfx section
This commit is contained in:
@ -129,3 +129,7 @@ The loader and validator both emit typed errors keyed by the manifest field that
|
||||
Run `lfx extension validate <path>` to see every error as a structured object with `code`, `message`, `location`, `hint`, and `ref_url`.
|
||||
|
||||
## See also
|
||||
|
||||
- [Bundle extensions overview](./extensions-overview)
|
||||
- [Build your first extension](./extensions-quickstart)
|
||||
- [About LFX](./lfx-overview)
|
||||
@ -70,4 +70,11 @@ lfx extension list
|
||||
|
||||
If you have custom components that you want to distribute and version independently of your Langflow install, you can package them as an extension.
|
||||
|
||||
For more information, see [Build your first Langflow Extension](./extensions-quickstart.mdx).
|
||||
For more information, see [Build your first Langflow Extension](./extensions-quickstart.mdx).
|
||||
|
||||
## See also
|
||||
|
||||
- [About LFX](./lfx-overview)
|
||||
- [Build your first extension](./extensions-quickstart)
|
||||
- [Manifest reference](./extensions-manifest)
|
||||
- [Run flows with LFX](./lfx-run)
|
||||
@ -107,3 +107,8 @@ The scaffold ships a working `Component` subclass that prints `"Hello, {name}!"`
|
||||
The bundle appears in the palette without further configuration.
|
||||
|
||||
## See also
|
||||
|
||||
- [Bundle extensions overview](./extensions-overview)
|
||||
- [Manifest reference](./extensions-manifest)
|
||||
- [About LFX](./lfx-overview)
|
||||
- [Run flows with LFX](./lfx-run)
|
||||
@ -231,3 +231,10 @@ lfx push --env local
|
||||
```
|
||||
|
||||
This command will send the request to the Langflow base URL at `http://127.0.0.1:7860` using a Langflow API key named `LANGFLOW_LOCAL_API_KEY`.
|
||||
|
||||
## See also
|
||||
|
||||
- [About LFX](./lfx-overview)
|
||||
- [Install LFX](./lfx-install)
|
||||
- [Run flows with LFX](./lfx-run)
|
||||
- [Bundle extensions](./extensions-overview)
|
||||
|
||||
@ -110,7 +110,9 @@ To list available commands:
|
||||
lfx --help
|
||||
```
|
||||
|
||||
## Next steps
|
||||
## See also
|
||||
|
||||
- [About LFX](./lfx-overview)
|
||||
- [Run flows with LFX](./lfx-run)
|
||||
- [Flow DevOps Toolkit SDK](/flow-devops-sdk)
|
||||
- [Flow DevOps Toolkit SDK](./lfx-devops-sdk.mdx)
|
||||
- [Bundle extensions](./extensions-overview)
|
||||
|
||||
@ -278,7 +278,9 @@ export LANGFLOW_COMPONENT_CATEGORY_ALLOWLIST="core"
|
||||
uv run lfx serve my_flow.json
|
||||
```
|
||||
|
||||
## Next steps
|
||||
## See also
|
||||
|
||||
- [Flow DevOps Toolkit SDK](/flow-devops-sdk) — version, test, and deploy flows from the CLI
|
||||
- [Bundle extensions](/extensions-overview) — develop and distribute custom component bundles
|
||||
- [About LFX](./lfx-overview)
|
||||
- [Install LFX](./lfx-install)
|
||||
- [Flow DevOps Toolkit SDK](./lfx-devops-sdk.mdx)
|
||||
- [Bundle extensions](./extensions-overview)
|
||||
|
||||
@ -188,15 +188,6 @@ module.exports = {
|
||||
id: "Develop/configuration-cli",
|
||||
label: "Use the Langflow CLI"
|
||||
},
|
||||
{
|
||||
type: "category",
|
||||
label: "Bundle extensions",
|
||||
items: [
|
||||
"Develop/extensions-overview",
|
||||
"Develop/extensions-quickstart",
|
||||
"Develop/extensions-manifest",
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
@ -340,6 +331,15 @@ module.exports = {
|
||||
id: "Lfx/lfx-devops-sdk",
|
||||
label: "Flow DevOps Toolkit SDK"
|
||||
},
|
||||
{
|
||||
type: "category",
|
||||
label: "Bundle extensions",
|
||||
items: [
|
||||
"Lfx/extensions-overview",
|
||||
"Lfx/extensions-quickstart",
|
||||
"Lfx/extensions-manifest",
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user