docs: add LiteLLM proxy bundle#11867
Conversation
|
Important Review skippedAuto incremental reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Use the checkbox below for a quick retry:
WalkthroughA new documentation file for the LiteLLM bundle is added, describing how the LiteLLM Proxy routes requests to multiple LLM providers with parameter documentation. The sidebar navigation is updated to include this new bundle documentation. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes 🚥 Pre-merge checks | ✅ 7✅ Passed checks (7 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This comment has been minimized.
This comment has been minimized.
Codecov Report✅ All modified and coverable lines are covered by tests. ❌ Your project check has failed because the head coverage (42.03%) is below the target coverage (60.00%). You can increase the head coverage or adjust the target coverage. Additional details and impacted files@@ Coverage Diff @@
## docs-1.8-release #11867 +/- ##
====================================================
- Coverage 35.31% 35.31% -0.01%
====================================================
Files 1525 1525
Lines 73292 73292
Branches 11021 11021
====================================================
- Hits 25884 25883 -1
Misses 45995 45995
- Partials 1413 1414 +1
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Actionable comments posted: 2
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@docs/docs/Components/bundles-lite-llm.mdx`:
- Around line 1-4: The front matter for the documentation page with title
"LiteLLM" and slug "/bundles-lite-llm" is missing required fields; update the
YAML front matter block at the top of the file to include a descriptive
`description` string summarizing the page and add a numeric `sidebar_position`
(e.g., 1, 2, etc.) to control ordering; ensure the block contains `title`,
`description`, and `sidebar_position` keys alongside the existing `slug`.
- Line 33: Update the table row for the `api_key` parameter so its "type" column
reads `String` (not "Virtual Key"), keeping the description text that explains
it is a virtual key for LiteLLM proxy authentication; modify the `api_key` row
in the bundles-lite-llm.mdx table to reflect the correct data type while
preserving the existing semantics in the description column.
| --- | ||
| title: LiteLLM | ||
| slug: /bundles-lite-llm | ||
| --- |
There was a problem hiding this comment.
Front matter is missing required description and sidebar_position fields.
📝 Proposed fix
---
title: LiteLLM
+description: Use the LiteLLM bundle to route LLM requests through a LiteLLM proxy with a single virtual key.
slug: /bundles-lite-llm
+sidebar_position: 1
---As per coding guidelines, "Front matter should include 'title', 'description', and 'sidebar_position' fields for documentation pages."
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| --- | |
| title: LiteLLM | |
| slug: /bundles-lite-llm | |
| --- | |
| --- | |
| title: LiteLLM | |
| description: Use the LiteLLM bundle to route LLM requests through a LiteLLM proxy with a single virtual key. | |
| slug: /bundles-lite-llm | |
| sidebar_position: 1 | |
| --- |
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@docs/docs/Components/bundles-lite-llm.mdx` around lines 1 - 4, The front
matter for the documentation page with title "LiteLLM" and slug
"/bundles-lite-llm" is missing required fields; update the YAML front matter
block at the top of the file to include a descriptive `description` string
summarizing the page and add a numeric `sidebar_position` (e.g., 1, 2, etc.) to
control ordering; ensure the block contains `title`, `description`, and
`sidebar_position` keys alongside the existing `slug`.
| | Name | Type | Description | | ||
| |------|------|-------------| | ||
| | api_base | String | Input parameter. Base URL of the LiteLLM proxy. Default: `"http://localhost:4000/v1"`. | | ||
| | api_key | Virtual Key | Input parameter. Virtual key for authentication with the LiteLLM proxy. | |
There was a problem hiding this comment.
api_key type should be String, not Virtual Key.
"Virtual Key" describes the semantics of the value, not its data type — inconsistent with every other row in the table. The description column already captures that it's a virtual key.
📝 Proposed fix
-| api_key | Virtual Key | Input parameter. Virtual key for authentication with the LiteLLM proxy. |
+| api_key | String | Input parameter. Virtual key for authentication with the LiteLLM proxy. |📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| | api_key | Virtual Key | Input parameter. Virtual key for authentication with the LiteLLM proxy. | | |
| | api_key | String | Input parameter. Virtual key for authentication with the LiteLLM proxy. | |
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@docs/docs/Components/bundles-lite-llm.mdx` at line 33, Update the table row
for the `api_key` parameter so its "type" column reads `String` (not "Virtual
Key"), keeping the description text that explains it is a virtual key for
LiteLLM proxy authentication; modify the `api_key` row in the
bundles-lite-llm.mdx table to reflect the correct data type while preserving the
existing semantics in the description column.
There was a problem hiding this comment.
I agree with coderabbit here. Type should be either string or secret string
There was a problem hiding this comment.
@aimurphy Thank you for confirming! Yes, "String" or "Secret String" would both be more appropriate type values for the table, as they describe the data type rather than the semantic meaning. The description column already explains that it's a virtual key for LiteLLM proxy authentication.
🧠 Learnings used
Learnt from: TensorNull
Repo: langflow-ai/langflow PR: 9735
File: docs/docs/Components/bundles-cometapi.mdx:9-9
Timestamp: 2025-09-07T05:44:46.715Z
Learning: In Langflow bundle documentation files (docs/docs/Components/bundles-*.mdx), the standard link pattern for referencing the main Bundles page is [Bundles](/components-bundle-components), not /components-bundles. This pattern is used consistently across all 37+ bundle documentation files.
aimurphy
left a comment
There was a problem hiding this comment.
approved with one small comment
| | Name | Type | Description | | ||
| |------|------|-------------| | ||
| | api_base | String | Input parameter. Base URL of the LiteLLM proxy. Default: `"http://localhost:4000/v1"`. | | ||
| | api_key | Virtual Key | Input parameter. Virtual key for authentication with the LiteLLM proxy. | |
There was a problem hiding this comment.
I agree with coderabbit here. Type should be either string or secret string
This comment has been minimized.
This comment has been minimized.
|
Build successful! ✅ |
* langflow-webhook-auth-enable * add-not-contains-filter-operator * does-not-contains-operator * less-redundant-explanation * docs: add jq and path selection to data operations (#10083) add-jq-and-path-to-data-operations * smart transform historical names * change back to smart transform * jq expression capitalization/package name * small edit for clarity of not contains operator * read/write file component name changes * docs: add smart router component (#10097) * init * add-to-release-notes * remove-dynamic-output-as-parameter * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: screenshot audit (#10166) * remove-unused * agent-examples * main-ui-screenshots * components-screenshots * combine-web-search-components * simple-agent-flow-in-playground * round-screenshots * my-projects * combine-data-components * docs: component paths updates for lfx (#10130) * contributing-bundles-path * api-monitor-example * concepts-components-page * contribute-components-path * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: auto-add projects as MCP servers (#10096) * add-mcp-auto-auth-as-default-behavior * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> Co-authored-by: Edwin Jose <edwin.jose@datastax.com> * docs: amazon bedrock converse (#10289) * use-bedrock-converse * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Update docs/docs/Components/bundles-amazon.mdx --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs 1.7 release: add mock data component (#10288) * add-component-and-release-note * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: update custom component docs (#10323) * add-partial * update-lfx-component-paths * move-partial * completed-quickstart * clean up intro * try-docker-with-custom-mount * up-to-typed-annotations * typed-annotations * dynamic-fields * end-of-file * bundles-naming * chore: update component index --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * docs: add cometapi back for 1.7 release (#10445) * add-comet-bundle-back-for-1.7 * add-comet-to-release-notes * docs: add back docling remote vlm for release 1.7 (#10489) * add-back-docling-vlm-content * add-release-note * docs: ALTK component (#10511) * broken-anchor * sidebar-and-page * add-release-note * add-context-on-output * docs: SSRF warning (#10573) * add-ssrf-protection-env-var * api-request-component * Update docs/docs/Components/components-data.mdx * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * move-note-to-table * release-note --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: dynamic create data component (#10517) * add-dynamic-create-data-component-and-release-note * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * clarify-message-types --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: cuga component bundle (#10589) * initlal-content * cuga-specific-component-connections * cleanup * use-the-same-name * add-lite-mode-remove-api-flag-and-mode * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * public-or-private-internet * agent-doesnt-check-urls * peer-review --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: remove docling vlm component from 1.7 release branch (#10630) remove-vlm-component * docs: rename component categories and make all components single pages (#10648) * docs: OpenAPI spec version upgraded from 1.6.5 to 1.6.8 (#10627) Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com> Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com> * up to models and agents * sidebars * fix-broken-links * chore: Fix indentation on bundles-docling.mdx (#10640) * sidebars * redo-intros * link-to-models * data-components * files-components-no-kb * io-components * helper-utility-components * llm-ops-components * logic-components * processing-pages * sidebars * combine-legacy-components-into-one-page * update-links * remove-overview-pages-and-redirect * make-mcp-tools-page * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * no-cap --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com> Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: combined web search component (#10664) * combine-pages * remove-rss-and-news-search-and-update-links * remove-vlm-link * leave-old-release-note-but-remove-link * docs: add altk reflection component (#10660) * add-new-component * differentiate-components * docs: mcp streamable http client (#10621) * release note * mcp-client-changes * update-astra-example * icons-and-copy * order-of-names * docs: add cuga decomposition strategy as advanced parameter (#10672) * update-component-link * init * add-decomp-as-advanced-param * [autofix.ci] apply automated fixes * [autofix.ci] apply automated fixes (attempt 2/3) * [autofix.ci] apply automated fixes (attempt 3/3) * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * update-component-index * [autofix.ci] apply automated fixes * [autofix.ci] apply automated fixes (attempt 2/3) * [autofix.ci] apply automated fixes (attempt 3/3) --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: datastax bundles page (#10686) * init * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: llm router changed to llm selector (#10663) * update-component-name * previous-name-and-release-note * [autofix.ci] apply automated fixes * [autofix.ci] apply automated fixes (attempt 2/3) * [autofix.ci] apply automated fixes (attempt 3/3) * docs: log alembic to stdout (#10711) * docs-alembic-log-env-var * cleanup * remove-legacy-component-link * docs: configure s3 for file storage backend (#10678) * configure-file-storage-s3 * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * clarify-s3-credentials * add-storage-tags-and-cleanup-creds-seciton * role-link-name * fix-parse-error --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: allow rest tweaks to mcp tools component (#10833) * typo * tweak-mcp-tools-component * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * add-release-note * docs: use mustache templates in prompts (#11262) * mustache-templating * syntax * release-note * peer-review * docs: smart transform supports Message type (#11306) * component-supports-message-type * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * peer-review --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: modular dependency imports for langflow-base (#11250) * modular-base-dependencies * syntax-and-clarification * release-note * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * [autofix.ci] apply automated fixes * clarify-base-and-langflow * component-index * delete-component-index * [autofix.ci] apply automated fixes * set-agentic-experience * potential-breaking-changes * not-audio-package * cleanup-and-syntax * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> * docs: symmetric and asymmetric JWT (#11159) * initial-content * cleanup * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * [autofix.ci] apply automated fixes * docs-peer-review * [autofix.ci] apply automated fixes --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> * docs: add markdown output to url component (#11336) * add-markdown-output-format * raw-content * Apply suggestions from code review * docs: Add global variable support for MCP server headers (#11397) * add-global-var-in-mcp-headers * revert-curl-syntax-change * remove-duplicate-tab * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * remove-code-block * add-release-note --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Update docs/docs/Develop/install-custom-dependencies.mdx * Update docs/docs/Develop/jwt-authentication.mdx * docs: global model provider feature (#11231) * initial-changes-to-model-providers * add-icon-for-model-partial * syntax * adding-custom-language-model * release-note * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * peer-review * use-anthropic-model-with-agent * [autofix.ci] apply automated fixes * design-changes --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> * mustache-limitations * release-note-for-jwt * docs: playground refactor and screenshots (#11639) * screenshots * new-playground-and-icon * release-note * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: component inspection panel (#11675) * docs-component-inspection-panel * cleanup * docs: add tool shortlisting and remove web_apps from CUGA component (#11669) docs-add-shortlist-tools-and-remove-webapps-parameters * fix-details-tab-error * docs: workflow API draft build (#11323) * delete-unused-yaml-file * initial-content * add-python-and-ts-to-example-requests * separate-pages * test-spec-presentation * hide-async-and-make-workflows-plural * fix-broken-link * add-changes-to-async * use-workflow-spec-from-sdk-build * make-setup-partial * add-fetch-script-for-openapi-spec * update-workflows-spec * remove-stream-for-now * remove-reconnect-to-stream * consolidate-pages * remove-force-boolean * [autofix.ci] apply automated fixes * docs: add guardrails component (#11674) * docs-add-guardrails-component * cleanup * example-and-heuristic-check * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * [autofix.ci] apply automated fixes * add-note-about-llm * add-release-note --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> * docs: pass env var to run command and endpoint as header (#11447) * pass-env-var-to-lfx * add-env-var-passing-to-run-endpoint * add-python-and-js-commands * docs: responses api token usage tracking (#11564) * initlal-content * add-release-note * changes-for-accessing-advanced-parameters * [autofix.ci] apply automated fixes * [autofix.ci] apply automated fixes (attempt 2/3) * small-playground-changes * [autofix.ci] apply automated fixes * Revert "docs: OpenAPI spec content updated without version change (#11787)" This reverts commit a0d5618. * [autofix.ci] apply automated fixes * docs: add LiteLLM proxy bundle (#11867) * docs-add-litellm-proxy-component * Update docs/docs/Components/bundles-lite-llm.mdx * docs: 1.8 changes from QA (#11998) * remove-rightside-playground * tutorials * image-size-update * component-release-notes * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: pass API keys to args and not env (#11997) * remove-rightside-playground * tutorials * image-size-update * docs-troubleshoot-mcp-proxy-header-keys * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: knowledge bases (#11924) * docs-add-back-kb-content * update-with-release-candidate-branch * fix-linking-error * remove-advanced-flag * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * add-release-note --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: traces v0 (#12014) * env-var-release-note-and-sidebars * traces-and-database * traces-ui-and-api-retrieval * cleanup * space * move-section * move-what-traces-capture-section * docs: remove kb ingestion and rename kb retrieval (#12065) remove-knowledge-ingestion-and-rename-knowledge-retrieval * docs: add link to secret key rotation script (#12072) * add-link-to-secret-key-rotation * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: openlayer follow-on (#12073) * add-openlayer-to-sidebars-and-release-notes * Update docs/docs/Support/release-notes.mdx --------- Co-authored-by: April M <36110273+aimurphy@users.noreply.github.com> Co-authored-by: Edwin Jose <edwin.jose@datastax.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
* langflow-webhook-auth-enable * add-not-contains-filter-operator * does-not-contains-operator * less-redundant-explanation * docs: add jq and path selection to data operations (#10083) add-jq-and-path-to-data-operations * smart transform historical names * change back to smart transform * jq expression capitalization/package name * small edit for clarity of not contains operator * read/write file component name changes * docs: add smart router component (#10097) * init * add-to-release-notes * remove-dynamic-output-as-parameter * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: screenshot audit (#10166) * remove-unused * agent-examples * main-ui-screenshots * components-screenshots * combine-web-search-components * simple-agent-flow-in-playground * round-screenshots * my-projects * combine-data-components * docs: component paths updates for lfx (#10130) * contributing-bundles-path * api-monitor-example * concepts-components-page * contribute-components-path * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: auto-add projects as MCP servers (#10096) * add-mcp-auto-auth-as-default-behavior * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> Co-authored-by: Edwin Jose <edwin.jose@datastax.com> * docs: amazon bedrock converse (#10289) * use-bedrock-converse * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Update docs/docs/Components/bundles-amazon.mdx --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs 1.7 release: add mock data component (#10288) * add-component-and-release-note * Apply suggestion from @aimurphy Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: update custom component docs (#10323) * add-partial * update-lfx-component-paths * move-partial * completed-quickstart * clean up intro * try-docker-with-custom-mount * up-to-typed-annotations * typed-annotations * dynamic-fields * end-of-file * bundles-naming * chore: update component index --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * docs: add cometapi back for 1.7 release (#10445) * add-comet-bundle-back-for-1.7 * add-comet-to-release-notes * docs: add back docling remote vlm for release 1.7 (#10489) * add-back-docling-vlm-content * add-release-note * docs: ALTK component (#10511) * broken-anchor * sidebar-and-page * add-release-note * add-context-on-output * docs: SSRF warning (#10573) * add-ssrf-protection-env-var * api-request-component * Update docs/docs/Components/components-data.mdx * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * move-note-to-table * release-note --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: dynamic create data component (#10517) * add-dynamic-create-data-component-and-release-note * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * clarify-message-types --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: cuga component bundle (#10589) * initlal-content * cuga-specific-component-connections * cleanup * use-the-same-name * add-lite-mode-remove-api-flag-and-mode * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * public-or-private-internet * agent-doesnt-check-urls * peer-review --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: remove docling vlm component from 1.7 release branch (#10630) remove-vlm-component * docs: rename component categories and make all components single pages (#10648) * docs: OpenAPI spec version upgraded from 1.6.5 to 1.6.8 (#10627) Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com> Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com> * up to models and agents * sidebars * fix-broken-links * chore: Fix indentation on bundles-docling.mdx (#10640) * sidebars * redo-intros * link-to-models * data-components * files-components-no-kb * io-components * helper-utility-components * llm-ops-components * logic-components * processing-pages * sidebars * combine-legacy-components-into-one-page * update-links * remove-overview-pages-and-redirect * make-mcp-tools-page * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * no-cap --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com> Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: combined web search component (#10664) * combine-pages * remove-rss-and-news-search-and-update-links * remove-vlm-link * leave-old-release-note-but-remove-link * docs: add altk reflection component (#10660) * add-new-component * differentiate-components * docs: mcp streamable http client (#10621) * release note * mcp-client-changes * update-astra-example * icons-and-copy * order-of-names * docs: add cuga decomposition strategy as advanced parameter (#10672) * update-component-link * init * add-decomp-as-advanced-param * [autofix.ci] apply automated fixes * [autofix.ci] apply automated fixes (attempt 2/3) * [autofix.ci] apply automated fixes (attempt 3/3) * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * update-component-index * [autofix.ci] apply automated fixes * [autofix.ci] apply automated fixes (attempt 2/3) * [autofix.ci] apply automated fixes (attempt 3/3) --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: datastax bundles page (#10686) * init * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: llm router changed to llm selector (#10663) * update-component-name * previous-name-and-release-note * [autofix.ci] apply automated fixes * [autofix.ci] apply automated fixes (attempt 2/3) * [autofix.ci] apply automated fixes (attempt 3/3) * docs: log alembic to stdout (#10711) * docs-alembic-log-env-var * cleanup * remove-legacy-component-link * docs: configure s3 for file storage backend (#10678) * configure-file-storage-s3 * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * clarify-s3-credentials * add-storage-tags-and-cleanup-creds-seciton * role-link-name * fix-parse-error --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: allow rest tweaks to mcp tools component (#10833) * typo * tweak-mcp-tools-component * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * add-release-note * docs: use mustache templates in prompts (#11262) * mustache-templating * syntax * release-note * peer-review * docs: smart transform supports Message type (#11306) * component-supports-message-type * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * peer-review --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: modular dependency imports for langflow-base (#11250) * modular-base-dependencies * syntax-and-clarification * release-note * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * [autofix.ci] apply automated fixes * clarify-base-and-langflow * component-index * delete-component-index * [autofix.ci] apply automated fixes * set-agentic-experience * potential-breaking-changes * not-audio-package * cleanup-and-syntax * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> * docs: symmetric and asymmetric JWT (#11159) * initial-content * cleanup * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * [autofix.ci] apply automated fixes * docs-peer-review * [autofix.ci] apply automated fixes --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> * docs: add markdown output to url component (#11336) * add-markdown-output-format * raw-content * Apply suggestions from code review * docs: Add global variable support for MCP server headers (#11397) * add-global-var-in-mcp-headers * revert-curl-syntax-change * remove-duplicate-tab * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * remove-code-block * add-release-note --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * Update docs/docs/Develop/install-custom-dependencies.mdx * Update docs/docs/Develop/jwt-authentication.mdx * docs: global model provider feature (#11231) * initial-changes-to-model-providers * add-icon-for-model-partial * syntax * adding-custom-language-model * release-note * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * peer-review * use-anthropic-model-with-agent * [autofix.ci] apply automated fixes * design-changes --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> * mustache-limitations * release-note-for-jwt * docs: playground refactor and screenshots (#11639) * screenshots * new-playground-and-icon * release-note * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: component inspection panel (#11675) * docs-component-inspection-panel * cleanup * docs: add tool shortlisting and remove web_apps from CUGA component (#11669) docs-add-shortlist-tools-and-remove-webapps-parameters * fix-details-tab-error * docs: workflow API draft build (#11323) * delete-unused-yaml-file * initial-content * add-python-and-ts-to-example-requests * separate-pages * test-spec-presentation * hide-async-and-make-workflows-plural * fix-broken-link * add-changes-to-async * use-workflow-spec-from-sdk-build * make-setup-partial * add-fetch-script-for-openapi-spec * update-workflows-spec * remove-stream-for-now * remove-reconnect-to-stream * consolidate-pages * remove-force-boolean * [autofix.ci] apply automated fixes * docs: add guardrails component (#11674) * docs-add-guardrails-component * cleanup * example-and-heuristic-check * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * [autofix.ci] apply automated fixes * add-note-about-llm * add-release-note --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> * docs: pass env var to run command and endpoint as header (#11447) * pass-env-var-to-lfx * add-env-var-passing-to-run-endpoint * add-python-and-js-commands * docs: responses api token usage tracking (#11564) * initlal-content * add-release-note * changes-for-accessing-advanced-parameters * [autofix.ci] apply automated fixes * [autofix.ci] apply automated fixes (attempt 2/3) * small-playground-changes * [autofix.ci] apply automated fixes * Revert "docs: OpenAPI spec content updated without version change (#11787)" This reverts commit a0d5618. * [autofix.ci] apply automated fixes * docs: add LiteLLM proxy bundle (#11867) * docs-add-litellm-proxy-component * Update docs/docs/Components/bundles-lite-llm.mdx * docs: 1.8 changes from QA (#11998) * remove-rightside-playground * tutorials * image-size-update * component-release-notes * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: pass API keys to args and not env (#11997) * remove-rightside-playground * tutorials * image-size-update * docs-troubleshoot-mcp-proxy-header-keys * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: knowledge bases (#11924) * docs-add-back-kb-content * update-with-release-candidate-branch * fix-linking-error * remove-advanced-flag * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * add-release-note --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: traces v0 (#12014) * env-var-release-note-and-sidebars * traces-and-database * traces-ui-and-api-retrieval * cleanup * space * move-section * move-what-traces-capture-section * docs: remove kb ingestion and rename kb retrieval (#12065) remove-knowledge-ingestion-and-rename-knowledge-retrieval * docs: add link to secret key rotation script (#12072) * add-link-to-secret-key-rotation * Apply suggestions from code review Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> --------- Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com> * docs: openlayer follow-on (#12073) * add-openlayer-to-sidebars-and-release-notes * Update docs/docs/Support/release-notes.mdx --------- Co-authored-by: April M <36110273+aimurphy@users.noreply.github.com> Co-authored-by: Edwin Jose <edwin.jose@datastax.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
#11805
Summary by CodeRabbit
Documentation