diff --git a/docs/docs/Develop/extensions-manifest.mdx b/docs/docs/Lfx/extensions-manifest.mdx similarity index 97% rename from docs/docs/Develop/extensions-manifest.mdx rename to docs/docs/Lfx/extensions-manifest.mdx index b10da11625..9b8ee989fb 100644 --- a/docs/docs/Develop/extensions-manifest.mdx +++ b/docs/docs/Lfx/extensions-manifest.mdx @@ -129,3 +129,7 @@ The loader and validator both emit typed errors keyed by the manifest field that Run `lfx extension validate ` 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) diff --git a/docs/docs/Develop/extensions-overview.mdx b/docs/docs/Lfx/extensions-overview.mdx similarity index 93% rename from docs/docs/Develop/extensions-overview.mdx rename to docs/docs/Lfx/extensions-overview.mdx index c748210673..5e2bbe8631 100644 --- a/docs/docs/Develop/extensions-overview.mdx +++ b/docs/docs/Lfx/extensions-overview.mdx @@ -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). \ No newline at end of file +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) \ No newline at end of file diff --git a/docs/docs/Develop/extensions-quickstart.mdx b/docs/docs/Lfx/extensions-quickstart.mdx similarity index 96% rename from docs/docs/Develop/extensions-quickstart.mdx rename to docs/docs/Lfx/extensions-quickstart.mdx index 22aa2c8175..dbd88f0e1f 100644 --- a/docs/docs/Develop/extensions-quickstart.mdx +++ b/docs/docs/Lfx/extensions-quickstart.mdx @@ -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) diff --git a/docs/docs/Lfx/lfx-devops-sdk.mdx b/docs/docs/Lfx/lfx-devops-sdk.mdx index 982a86cd61..53edf47b0f 100644 --- a/docs/docs/Lfx/lfx-devops-sdk.mdx +++ b/docs/docs/Lfx/lfx-devops-sdk.mdx @@ -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) diff --git a/docs/docs/Lfx/lfx-install.mdx b/docs/docs/Lfx/lfx-install.mdx index 8522724b25..6ef88f85f0 100644 --- a/docs/docs/Lfx/lfx-install.mdx +++ b/docs/docs/Lfx/lfx-install.mdx @@ -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) diff --git a/docs/docs/Lfx/lfx-run.mdx b/docs/docs/Lfx/lfx-run.mdx index 17ffa8b630..0a8f486910 100644 --- a/docs/docs/Lfx/lfx-run.mdx +++ b/docs/docs/Lfx/lfx-run.mdx @@ -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) diff --git a/docs/sidebars.js b/docs/sidebars.js index 1f29df579a..7c5ebca7a7 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -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", + ], + }, ], }, {