415323ec6d
docs: migrate code blocks to native Prism and restyle API reference pages ( #13299 )
...
* docs: migrate code blocks from CodeSnippet to native Prism
Replace the custom CodeSnippet component (@code-hike/lighter) with
Docusaurus's native @theme/CodeBlock across all MDX files (current and
versioned docs). Add bash to additionalLanguages and swizzle
prism-include-languages.js to add custom token highlighting for shell
commands and flags. Remove @code-hike/mdx dependency.
* docs: improve inline code styling
Darken inline code background, increase horizontal padding to 0.4em,
fix vertical alignment, and remove border in light mode.
* docs: address PR review — fix code slice regression and CSS/regex polish
- Inline RecursiveCharacterTextSplitter inputs and methods as literal
code blocks in concepts-components.mdx (current + 1.8.0 + 1.9.0),
restoring the focused slices lost when migrating from CodeSnippet
- Scope bash-plain Prism regex to unambiguous CLI subcommands only,
removing generic bash builtins (run, add, get, set, start, stop, etc.)
- Merge duplicate .theme-code-block CSS rules into a single declaration
* fix(docs): prevent horizontal scroll on API docs pages
The Redoc two-column layout (sidebar 300px + api-content 1300px)
totals 1600px, expanding .main-wrapper beyond narrower viewports
because it has overflow:visible. Clips at .main-wrapper using the
html.plugin-redoc class that Docusaurus adds on API pages only.
* fix(docs): API docs sidebar and layout fixes
- Disable Redoc built-in search (disableSearch: true)
- Pin sidebar top to navbar height (top: 60px) so it never hides behind navbar
- Remove hardcoded #111 background from dark mode sidebar
* fix(docs): render markdown correctly in API docs descriptions
The _clean_descriptions function was converting newlines to <br> tags,
mixing HTML with Markdown. CommonMark stops parsing Markdown headings
(###) inside HTML blocks, causing them to appear as literal text in Redoc.
Replace the <br> conversion with a simple strip() so descriptions remain
pure Markdown and Redoc renders headings, lists, and code blocks correctly.
* feat(docs): align API docs colors with Langflow brand
- Set primaryColor to #F471B5 (Langflow pink)
- Add HTTP method badge colors matching Langflow palette
- Set schema.linesColor and requireLabelColor to brand pink
- Set inline code color to pink, headers to #e3e3e3
- Set sidebar background to #18181b (matches frontend dark bg)
- Set rightPanel background to #0d0d0f, codeBlock to #161618
- Refactor: move color config from CSS to theme.theme where safe
- Remove dead search input CSS (search disabled via disableSearch:true)
- Consolidate duplicate .menu-content rules
* wip(docs): API docs styling — colors, components, light/dark themes
* fix(docs): fix Response samples h3 title padding and refactor HTTP method button CSS
* feat(docs): add sidebar dark background, active item styles, and right panel color adjustments
* fix(docs): add sidebar borders and remove operation divider border
* fix(docs): fix expanded response background and align dark/light theme colors
* refactor(docs): standardize selectors, comments and remove duplicate rules in redocusaurus.css
* refactor(docs): apply PR review — CSS custom properties, version pin, dom version comments, fix overflow
* fix(docs): fix Redocly badge visibility covered by sidebar background
* fix(docs): extend sidebar border-right to Redocly badge area
* refactor(docs): replace hardcoded #ffffff label color with --redoc-text-label variable
* fix(docs): lighten inline code background in API docs dark theme
Redoc's default typography.code.backgroundColor (rgba(38, 50, 56, 0.05))
is nearly invisible over the dark background. Override it with
rgba(255, 255, 255, 0.05) in dark theme only, excluding pre > code so
code sample blocks stay unaffected.
* feat(docs): align docs primary pink with API spec brand color
Use #f471b5 (API spec primaryColor) as --ifm-color-primary in dark theme
and #e44fa0 (slightly darkened for contrast on white) in light theme.
Remove dark-theme pink overrides in sidebar.css (#ff6ad0 CTA and
hsla(329, 55%, 68%) active TOC link) — they compensated for the old
muted pink and are redundant now that the primary itself is bright.
* feat(docs): lighten dark theme text colors for better readability
Bump body text (#a8a8b0 -> #bcbcc4), headings (#cdcdd4 -> #dcdce2)
and sidebar menu (#8a8a92 -> #9c9ca4) one step brighter.
* chore(docs): add IBM Equal Access accessibility-checker setup
Add accessibility-checker as devDependency with aceconfig.js (policy
IBM_Accessibility, JSON reports in docs/a11y-results/, gitignored).
Scan with: npx achecker <url> against a built docs site.
* fix(docs): WCAG AA contrast and ARIA fixes across docs and API reference
Validated with IBM Equal Access scans (light theme): home, quickstart and
component pages at 0 violations; /api from 3382 down to 167 (all remaining
are Redoc-internal DOM: schema table headers, svg/select labels).
Docs site:
- Light primary pink #d11074 — passes 4.5:1 on white and inline-code bg
- Light Prism palette darkened per-token to pass 4.5:1 on #f9f9fd
- TabItem swizzled to give tabpanels an accessible name (aria-label)
- codeBlockA11y client module: scrollable code blocks get role=region +
unique label; non-scrollable ones lose the needless tabindex
API reference (Redocusaurus):
- redocA11y client module: role=main on api-content, role=navigation on
sidebar — fixes 1924 aria_content_in_landmark violations
- HTTP method badges and response chips darkened to pass with white text
- Light-theme overrides: accessible pink #cd1072 for links, required
markers, constraint chips, schema tree lines; darker grays for utility
buttons and type labels (incl. 0.7-opacity wrapper fix)
- Sidebar active/hover items use regular text color, method badges keep
their own colors; expandable property names match non-expandable ones
* fix(docs): WCAG AA contrast fixes for dark theme
Validated with IBM Equal Access scans in dark mode (temporary
colorMode.defaultMode flip during scanning): home, quickstart and
component pages at 0 violations; /api matches light at 167 remaining
(all Redoc-internal DOM: table headers, svg/select labels).
- Code block comments/line numbers #4a5060 -> #798197 (4.56:1 on #18181a)
- Redoc dark sample tokens: boolean/null #e95c59, number #5392b8
- Status-code tabs: lift docusaurus-theme-redoc's #303846 !important
selected-tab rule with a higher-specificity override
- oneOf variant buttons: dark text in both themes (their white/pink
backgrounds are theme-independent)
- redocA11y client module: patch response chip colors (success green /
error red) to dark-accessible variants when data-theme=dark — a single
Redoc theme color cannot pass on both light and dark derived
backgrounds, and status is only distinguishable by computed color
* fix(docs): resolve remaining Redoc-internal accessibility violations
Extend the redocA11y client module with semantic patches for Redoc DOM
the theme cannot reach (validated: 0 IBM Equal Access violations on all
scanned pages in both light and dark themes):
- Decorative svg chevrons/arrows: aria-hidden=true (svg_graphics_labelled)
- Content-type dropdowns: aria-label (input_label_exists)
- Schema field tables (2-col name|description layout, no <th> anywhere):
role=presentation — content reads in DOM order; role=rowheader on <td>
is invalid ARIA inside a native table (table_headers_exists/related)
- Semantic patches run on the next animation frame after DOM changes so
Redoc's lazy-rendered operations are covered immediately; the heavier
color patch stays debounced
* ci(docs): gate docs accessibility with IBM Equal Access scans
Add test-docs-accessibility job to docs_test.yml (rides the existing
docs/** path filter from ci.yml): build + scan 4 representative pages
(home, quickstart, component page, /api) in light theme, then flip
colorMode.defaultMode to dark, rebuild and scan again.
- scripts/a11y-ci.sh: serves the build and runs npx achecker per page
with one retry to absorb Redoc lazy-render timing flakes; any real
violation fails the job (failLevels: violation)
- aceconfig.js: pin ruleArchive to 19May2026 so IBM rule updates don't
break CI without a deliberate bump
* ci(docs): fix Chrome sandbox launch on Ubuntu 24.04 runners
Ubuntu 24.04 restricts unprivileged user namespaces via AppArmor, which
prevents puppeteer's Chrome (used by the IBM checker) from starting its
sandbox. Re-enable them with the documented sysctl workaround instead of
weakening the browser with --no-sandbox.
* fix(docs): align response status code with description text
Redoc sets vertical-align: top and a smaller line-height on the status
code <strong> inside response buttons, leaving "200" visually higher
than "Successful Response". Align both to the shared text baseline.
* refactor(docs): apply PR review feedback
- redocA11y: match only real Redoc routes (/api, /api/workflow) — a bare
startsWith("/api") also matched docs pages like /api-request and
leaked one body MutationObserver per navigation
- codeBlockA11y: also observe the hidden attribute — Docusaurus tabs
toggle panels via hidden (no childList mutation), so scrollable blocks
inside an initially hidden tab were never re-evaluated for tabindex
- Extract Prism themes to src/prismThemes.js (docusaurus.config.js was
past the 600-line red flag)
- concepts-components.mdx (current + 1.9.0 + 1.8.0): comment pointing
hardcoded snippets to recursive_character.py to mitigate drift
Validated: clean build + IBM Equal Access scans 4/4 passing.
* replace-openapi-file-with-1.10
* migrate-prism-changes-to-1.10-version
* a11y-script-dont-block
---------
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
2026-06-12 13:58:04 +00:00
2411d8036e
docs: build OpenAPI spec and cut version 1.10 ( #13537 )
...
* build-api
* bump-version-to-1.10
* fix-broken-links
2026-06-08 18:25:14 +00:00
7ee0501690
docs: bundle separation and component updates ( #13472 )
...
* docs-add-bundles-and-instructions
* docs-text-io-legacy
* docs-add-internationalization-release-note
* docs-remove-unpublished-pages
* docs-use-bash-for-code-blocks-on-sdk-page
* peer-review
2026-06-02 21:31:36 +00:00
aefd8acb37
docs: directory component is legacy ( #13186 )
...
* remove-and-redirect-component-page
* update-tutorials-that-used-directory-component
* peer-review
* update-tutorial-screenshot
2026-05-19 15:33:50 +00:00
bbe2ccdc91
docs: fix sidebar and TOC styles for Redocusaurus ( #12748 )
...
* docs: improve sidebar and TOC readability + scroll progress
- Fix left nav sidebar hugging the left edge (remove margin-left)
- Increase sidebar font sizes and lift muted colors for legibility
- TOC right-side: white inactive items, pink active, gray for passed sections
- Add clientModule (tocProgress.js) to track scroll progress in TOC
- Add Redocusaurus API page styles to match site theme
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
* docs: fix sidebar/TOC height stability and active item reflow
- Force sidebarViewport to 100vh to prevent shrinking during scroll
- Replace font-weight on active TOC item with text-shadow to avoid reflow
* docs: left-anchor sidebar and increase fonts on large screens
* docs: constrain prev/next nav to match content max-width
* docs: fix sidebar jump on scroll by moving padding-top inside menu
* docs: fix sidebar-ad spacing with transparent padding on li
* docs: fix sidebarViewport height and MutationObserver leak
* docs: constrain doc content to 75vw and remove dead CSS comments
- Cap docMainContainer at 75vw
- Set pagination-nav to 100% width to match content column
- Remove commented-out .markdown and .ch-scrollycoding blocks
* docs: set docMainContainer max-width to 75% for better reading width
* docs: center main-wrapper on large screens and center docItemWrapper
* fix: revert lodash override to stable 4.17.21
lodash 4.18.0 is a broken release — template.js uses assignWith and
arrayEach without importing them, crashing npm start. Pin to 4.17.21
across all nested overrides.
* fix: prevent horizontal scroll on mobile docs pages
docsWrapper has flex:1 0 auto (flex-shrink:0), so it never shrinks below
the natural content width (~570px on iPhone). Cap it to 100vw and add
min-width:0 down the flex chain (docRoot, docMainContainer) so the
layout stays within viewport on narrow screens.
Also remove the overflow:visible override from ch-code-wrapper, which
was defeating the code block's own horizontal containment.
* feat: responsive navbar search and hide social icons on mobile
Shrink search bar as viewport narrows (160px at 1100px, 100px at 996px),
collapse to icon-only at 960px. Hide GitHub, X, and Discord icons below
996px where the hamburger menu takes over navigation.
* fix: images always respect container width above 996px
Use min(100%, 600px) so images are capped at 600px but never overflow
their container when the content area is narrower (e.g. sidebar open).
* fix: improve TOC progress scroll tracking and bottom-of-page detection
Adds scroll handler with RAF throttle, pauses/resumes MutationObserver
to avoid loops, and forces last TOC link active when scrolled to page bottom.
* fix: translate Portuguese comments to English in custom.css
* fix: sidebar viewport fills full screen height
* feat: sidebar section icon turns pink with ease transition when active
* fix: reduce TOC font size to 0.8rem
* fix: remove docMainContainer right padding and add 48px gap to content col
* fix: card header responsive alignment and title margin reset
* fix: darken card background and active sidebar item bg on light theme
* fix: revert TOC colors and add inline code border radius tweak
* fix: minimal scrollbar for sidebar and TOC — thumb only on hover
* fix: scrollbar fade-in/out transition at 0.25s ease
* feat: add rehype plugin for table column wrapping and centering
Inserts zero-width space after underscores in inline code cells so long
env-var names wrap at underscore boundaries. Also centers Format/Default
columns via a col-center class applied at build time.
* fix: use --ifm-heading-color for sidebar group labels in both themes
* refactor: split docs custom.css into themed partials
Breaks the 1,658-line monolithic custom.css into 8 focused files
(tokens, layout, navbar, sidebar, typography, components, code,
redocusaurus). custom.css is now a thin entry point with @imports.
* fix: align sidebar and navbar with shared --docs-gutter token
Introduces --docs-gutter: 1rem in tokens.css and applies it to both
navbar__inner horizontal padding and sidebar nav.menu padding-left,
keeping the Langflow logo and sidebar items visually aligned.
* fix: match sidebar ad background to page background color
Dark mode uses #111 (same as sidebar bg); light mode uses --ifm-background-color.
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-12 22:11:36 +00:00
71fbf5ff00
docs: cut version 1.9.0 ( #12681 )
...
* version-1.9.0-docs
* [autofix.ci] apply automated fixes
* [autofix.ci] apply automated fixes (attempt 2/3)
---------
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-04-14 02:07:01 +00:00
ba3472959f
docs: CSS redesign ( #12306 )
...
* align-copy-page-to-version
* css-changes
* add-tsx-components
* fix-giant-icons
* improve-download-cta-to-align-with-font
* peer-review
* accessibility-scan
* aria-labels-and-roles-for-svgs
* add continue on error on JEST download step
---------
Co-authored-by: cristhianzl <cristhian.lousa@gmail.com >
2026-03-31 16:43:32 +00:00
b36444f5d9
docs: add versioning ( #12218 )
...
* fix: nightly now properly gets 1.9.0 branch (#12215 )
before it was attempting to pull release-notes as letters are alphanumerically after numbers when we sort -V then grab tail
now we only look at branch names that follow the pattern '^release-[0-9]+\.[0-9]+\.[0-9]+$'
* docs: add search icon (#12216 )
add-back-svg
* initial-content
* cut-1.8-release-and-include-next-version
* stage-1.8.0-and-next
---------
Co-authored-by: Adam-Aghili <149833988+Adam-Aghili@users.noreply.github.com >
2026-03-18 20:03:49 +00:00
d43bf3f588
Docs: 1.8 release ( #11295 )
...
* 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 a0d5618ac9 .
* [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>
2026-03-06 14:41:10 +00:00
338ecc29e9
docs: import code by line number ( #11793 )
...
* import-from-lfx-component-code
* add-readme-instruction
* restore-contributing-page-partial
* add-partial
* coderabbit-review
2026-02-18 22:52:37 +00:00
3a092d2906
docs: remove yarn lockfile and just use npm ( #11254 )
...
* bump-docusuaurus-to-3.9.2
* remove-yarn-lockfile
* cicd-use-npm-instead-of-yarn
* use-npm-in-docs
* remove-unused-stylesheets
* overrides-syntax
* Update docs/package.json
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* Revert "Update docs/package.json"
This reverts commit b30dcefc82 .
---------
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2026-01-14 21:29:06 +00:00
421d895237
docs: 1.7 release branch ( #10081 )
...
* 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: clarify docling components (#10722 )
* clarify-what-docling-components-do
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* component-name
---------
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* docs: legacy processing components for 1.7 (#10661 )
* make-components-legacy
* remove-broken-link
* remove-outdated-components
* release-notes
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* add-back-dynamic-create-data
* fix-broken-link-in-smart-router
* remove-release-note
* Apply suggestions from code review
* legacy
---------
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* docs: remove dataframe to toolset component (#10854 )
remove-df-to-toolset-component
* docs: clarify superuser flow run behavior (#10865 )
superuser-clarification
* docs: add composio components (#10868 )
more-composio-components
* docs: additional dependencies for running Docling in Linux-based Docker environments (#10861 )
* initial-partial-and-troubleshooting
* 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: change component h3 headings to h2 (#10886 )
bump-headings
* docs: include webhook request example with auth (#10885 )
* include-webhook-request-examples
* fix-build-error
* docs: configurable api key validation (#10882 )
* initial-content
* clarify-differences
* typo
* docs: langflow server supports streamable http (#10891 )
* initial-updates
* check-params
* server-params
* peer-review
* update-release-note
* remove-delete-endpoint-for-legacy
* Revert "docs: langflow server supports streamable http (#10891 )"
This reverts commit e1dbefc21d .
* docs: new registration endpoints, email form, and telemetry events (#10816 )
* add-email-telemetry
* add-registration-v2-endpoints-and-telemetry
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* changes-from-peer-review
* 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: more info on smart router component (#10916 )
* continue-example
* remove-duplicate-info
* match-by-route-name
* docs: sidebars release notes (#10949 )
* move-to-support-section
* support
* docs: update comet api component parameters (#10950 )
update-parameters
* docs: mcp server streamable http (#10955 )
* content
* transport
* add-back-webhook-env-var
* Update docs/docs/Components/bundles-cuga.mdx
* docs: use bootstrap instead of deprecated launchctl load (#10951 )
use-bootstrap-and-semicolons
* docs: lfx serve and lfx run (#10498 )
* add-content
* add-entry-to-release-notes
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* partial-for-dependencies
* clarify-api-key-and-uvx
* lfx-included
* add-lfx-schema-and-cleanup-table
* install-nightly-curl-flow-json-clarify-dependencies-create-local-api-key
* not-automatic
* code-review
* work-in-progress
---------
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* docs: authorization changes (#10992 )
* files-superuser
* get-config-endpoint-requires-api-key
* config-endpoint
* remove-parentheticals
* docs: custom components input types (#11027 )
* io-links-and-update-paths
* remove-unncessary-sentence
* 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: cuga bundle updates (#10998 )
* change-policies-to-instructions
* new-screenshot
* 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 >
* files-when-knowldge-is-not-enabled
* docs: revert lfx (#11065 )
revert-lfx
* docs: cuga model limits (#11064 )
* add-warning
* remove-params
* add-watsonx-model
* bump-api-version
---------
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>
2025-12-18 20:36:17 +00:00
2c8935cbd8
Replace Ketch with IBM TrustArc consent management ( #10075 )
...
docs: Replace Ketch with IBM TrustArc consent management
2025-10-28 20:05:50 -07:00
8881abda0a
docs: API build updates ( #10274 )
...
* commit-package-changes-and-new-specs
* use-json-spec-and-add-cleaning-step-to-workflow
* revert-segment-explicit-path-change
* Apply suggestion from @mendonk
2025-10-16 15:06:47 +00:00
55878bf729
docs: Clean unused assets, reorganize the directory structure to match the nav for easier 3rd party contribution ( #10025 )
...
* directory reorg - flows section
* sidebar alignment - agents and mcp
* sidebar - api, contribute, support
* move docs for apify and assembly bundles
* structure in cursor rules
* delete unused assets
* move images and files to static
* more delete unused assets
* move integrations to components
* combine big query page with google bundle page
* combine notion pages into 1
* combine notion
* combine nvidia pages
* majority of develop and deploy topics
* move monitoring integrations to develop
* preempt mc from 10027
* remove notion action that is not needed
2025-09-29 23:57:47 +00:00
20051c7bc3
chore: post 1.6 docs cleanup ( #10022 )
...
* gateway model hint
* admonition audit
* escape curly braces
* autocollapse-categories-true
* true, false, advanced fix
* additional models
* Update sidebars.js
---------
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
2025-09-29 17:01:35 +00:00
a7825e14c9
docs: 1.6 feature branch ( #9521 )
...
* docs: update file size limit to 1024 mb (#9397 )
* update-file-size-limit-to-1024-mb
* docs: clarify available API endpoints and their use cases (#9382 )
* available-endpoints
* asterisk
* structure-into-tabs-and-confirm-login-endpoint
* reorg and clarify some usage
---------
Co-authored-by: April M <april.murphy@datastax.com >
---------
Co-authored-by: April M <april.murphy@datastax.com >
* add-lfx-kb-agent-struct-out
* update-release-notes
* docs: docling integration into file component (#9481 )
* init
* ui-package-manager
* more-content
* components-page
* dependency-included-for-1.6
* remove-package-management-feature
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* clarify-file-extension-behavior
* config-dir-not-in-1.6
* clarify-outputs
* add-links-andupdate-parameters
* more-params
* clarify-supported-filetypes
* installation-in-bundle
* 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 >
* docs: Traceloop SDK integration documentation (#9514 )
* Added documentation file for langflow-traceloop-instana integration
* updated sidebar.js
* Updated documentation with metrics integration instructions
* Update docs/docs/Integrations/integrations-instana-traceloop.mdx
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* Update docs/docs/Integrations/integrations-instana-traceloop.mdx
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* update doc
* Format correction
* Formatting correction
* Updated Slug title
* style-edit
* Split configure environment variables into steps
* Formatted as per Google developer style guide
* Update docs/docs/Integrations/integrations-instana-traceloop.mdx
Co-authored-by: Edwin Jose <edwinjose900@gmail.com >
* More context added on OTLP security
* Added screenshots of Instana dashboards
* Updated as per the review comments
* Update docs/docs/Integrations/integrations-instana-traceloop.mdx
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
* Update docs/docs/Integrations/integrations-instana-traceloop.mdx
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
* Update docs/docs/Integrations/integrations-instana-traceloop.mdx
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
* Update docs/docs/Integrations/integrations-instana-traceloop.mdx
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
* updated refer documentation links
---------
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
Co-authored-by: Edwin Jose <edwinjose900@gmail.com >
* docling-and-traceloop-links-for-release-notes-remove-duplicates
* traceloop-touchup
* add-component-release-notes
* docs: 1.6 knowledge base feature (#9381 )
* sidebars-and-content
* add-kb-components
* completed-basic-outline
* updates-and-new-names
* kb-tutorial-content
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* move-component-docs-to-main-page
* code-review
* reorganize-content
* add-link-to-agents
* fix links, create components-kb
* move and revise kb content
* missing import
---------
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
Co-authored-by: April M <april.murphy@datastax.com >
* docs: Component documentation updates for 1.6.0 (#9627 )
* bundles icon
* component menu and bundle icons
* mcp icon extension
* more bundle icon
* workspace gestures and locking
* mcp server stuff
* fix typo and move serper component
* g-assist edit
* simplify hidden param text and update cohere
* amazon components
* nvidia system assist
* use partial for hidden param text
* fix import, add partial for agent summary
* style changes to prep for separating vector page
* rework llm and embedding model pages
* handle legacy components
* remove memories page
* tools page
* applied partials to vector stores before moving
* move redis and ds, fix links
* astra db component updates
* c vector stores
* traceloop copyedits
* advanced parsing
* elastic page and ocr engine edit
* q-w vector stores
* rest of vector stores
* fix build errors
* Revert "mcp icon extension"
This reverts commit 4d1582793a .
* unused imports and build errors
* build errors
* better icon reference
* tip edits
* fixing after preview
* more touchup
* small style edits for ts client page
* replicate pr 9676
* fix style
* KB comments
* Update docs/docs/Components/bundles-mongodb.mdx
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
---------
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
* add deprecated component to release notes
* knowledge and message history
* wording
* legacy components
* capitalization
* docs: OpenAI responses endpoint (#9539 )
* init
* more-content-and-examples
* cleanup
* add-response-tabs-and-streaming-example
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* requires-agent-component-to-emit-message
* [autofix.ci] apply automated fixes
* test-and-explain-more
* global-var-and-fallback
* bash-not-curl-codeblock
* tighten-up-intro-para
* add-entry-to-concepts-publish-page
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* fix-merge-mistake
* flow-id-or-endpoint-name
* reformat
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* standardize-table-codefont
---------
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>
* fix build
* code rabbit comments
* docs: remove knowledge base content from 1.6 (#9784 )
* remove-kb-content
* broken links
* random change to restart build
---------
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
Co-authored-by: April M <april.murphy@datastax.com >
* docs: update composio bundle page (#9442 )
* update-composio-integrations
* update-doc-to-be-general
* trailing-space
* add-tool-script
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* global-variable
* 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 >
* reorder-steps-and-move-script
* clarify-connection
* [autofix.ci] apply automated fixes
* [autofix.ci] apply automated fixes (attempt 2/3)
* [autofix.ci] apply automated fixes (attempt 3/3)
* tools slug/name
* test composio steps
* remove unnecessary import
* 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>
Co-authored-by: April M <april.murphy@datastax.com >
* chore: small misses and sync with 9-Sep-25 release build (#9792 )
* io page
* fix slug
* custom models and canvas controls
* message history
* composio slack
* move a flow
* vlm option for docling
* docs: add oauth for mcp (#9626 )
* oauth-and-none-options
* mcp-composer-for-server
* updates-from-testing
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* clarify-client-update
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* code-review
* clarify-oauth-values
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* code-review
* double-words
---------
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* docs: include guidance for openai client dummy key (#9871 )
* test-client-calls
* less-prose
* clearer-intro
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* remove-indentation-and-correct-example-key-value
* comment-syntax
---------
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* docs: mcp tools troubleshooting (#9866 )
* move-mcp-troubleshooting-from-server-page-and-add-issue
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* Apply suggestions from code review
* Apply suggestions from code review
Co-authored-by: Lucas Oliveira <62335616+lucaseduoli@users.noreply.github.com >
---------
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
Co-authored-by: Lucas Oliveira <62335616+lucaseduoli@users.noreply.github.com >
* docs: auth changes (#9731 )
* initial-content
* 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 >
* code-review
* Apply suggestions from code review
---------
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* docs: CORS configuration (#9773 )
* initial-content
* title
* clarify-default
* cleanup
* cors-defaults-with-warning-for-1.7
* docs-and-code-review
* clarify-cors-in-future-release
* code-review
* developer mode for docling
* auto login
* cors
* auth variables
* environment variables pt 1
* env var pt 2
* env var pt 3
* env var pt 5
* align CLI page with env var
* autologin
* docs: clarify log format behavior (#9945 )
clarify-log-format-behavior
* docling dependency exceptions
---------
Co-authored-by: April M <april.murphy@datastax.com >
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
Co-authored-by: Sandesh R <115570766+2getsandesh@users.noreply.github.com >
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: Edwin Jose <edwinjose900@gmail.com >
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Lucas Oliveira <62335616+lucaseduoli@users.noreply.github.com >
2025-09-26 14:05:06 +00:00
38ff4e801f
chore: Redirect Langflow docs index page ( #9802 )
...
* set about to index
* Apply suggestions from code review
* Update docs/docs/Get-Started/about-langflow.mdx
2025-09-10 19:33:06 +00:00
9ae41d6251
docs: New theme colors, minimized footer, and slight style changes for readability of certain elements ( #9250 )
...
* fix anchor
* footer changes
* remove ifm-background-color
* apply pure back and pure white themes
* thematic link colors
* remove search box redesign to commit it separately
* re-add search box redesign
* remove extra blank line
* change heading font size slightly
* basic tab styling
* navbar-box-shadow
---------
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
2025-08-25 19:58:55 +00:00
aa70a15654
docs: Remove template pages because templates already include explanatory notes within Langflow ( #9235 )
...
* finish template description
* remove travel planning and simple agent pages
* remove sequential agent and memory chatbot
* remove 2 template, finish redirects, sidebar
* remove vector store rag page
* remove basic prompting page
* add bold to template name
* fix link
2025-07-30 16:35:50 +00:00
c03074300f
docs: combine api keys and authentication pages ( #9172 )
...
* combine-api-keys-and-auth
* remove-old-page-redirect-and-sidebar
* Update docs/docs/Configuration/api-keys-and-authentication.mdx
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* fix-parse-error
* Apply suggestions from code review
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
* upto-env-vars
* clarity-in-example
* clarify-user-creation
* specify-which-table
* links
* link text
* environment variable alignment
* environment variable table cleanup
---------
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: April I. Murphy <36110273+aimurphy@users.noreply.github.com >
Co-authored-by: April M <april.murphy@datastax.com >
2025-07-30 01:07:15 +00:00
f8d8ff4599
docs: Restructure navigation, refactor all component documentation, among many other things ( #9115 )
...
* reorg pt 1
* nav reorg pt 2
* update sidebar ad
* resolve comments and combine app pages
* playground and voice mode rewrite
* fix link
* add separate bundle pages
* add new pages to sidebar
* working on bundles
* moving content to new bundle pages
* move some sidebar items
* fix build
* nav labels
* small edits
* Working on helpers
* core components work
* wrapping up some more agent duplication
* aligning file management
* webhooks and file management
* data components
* address vector store and some legacy components
* finish logic params
* some work on processors
* remove unneeded pages and tidy some llm info
* progress on bundles pt 1
* bundles pt 2
* bundles pt 3
* finish looking at integrations
* it is done
* fix errors
* coderabbit and typos
* coderabbit pt 2
* resolving mcs pt 1
* separate agents and mcp
* still working on some memory stuff
* finish message history alignment
* incorporate PR 9138
* missed a link
* file management ui
* align w ui pr
* Apply suggestions from code review
* memory edits after discussion
2025-07-23 20:20:59 +00:00
607cadfe17
docs: data types ( #9074 )
...
* data-data-type
* content
* cleanup
* why-to-use
* cleanup
* more-cleanup
* last-cleanup
* redirects
* remove-concepts-objects-and-add-redirects-and-fix-links
* edit data types page
---------
Co-authored-by: April M <april.murphy@datastax.com >
Co-authored-by: Eric Hare <ericrhare@gmail.com >
2025-07-17 16:30:42 +00:00
3ddc7009e2
docs: remove google oauth integrations ( #9047 )
...
* remove-oauth-integration-and-make-components-legacy
* link
* redirect-oauth-page
* legacy-version-and-recommendation
2025-07-15 17:14:47 +00:00
d8291131ab
docs: Add heading and codeblock events for segment ( #9050 )
...
* docs: Add heading and codeblock events for segment
* docs: Update scroll event names
* docs: improve capture of code block language
* docs: ensure code block language capture for mobile
2025-07-15 15:17:11 +00:00
c38df91841
docs: Configure Segment ( #8996 )
2025-07-11 04:39:19 +00:00
27f5416ec0
docs: Repurpose Concepts section to focus on the visual editor and flows ( #8845 )
...
* initial alignment with 1.5 pr
* finish 1st rewrite of visual editor overview page
* working on flows and welcome
* more visual editor work
* about langflow
* next steps
* lfoss-1395 more focus on agents mcp
* align with PRs
* working on publish flows page
* finish embedded chat section
* finish publish page
* peer review pt 1
* coderabbit nitpicks
* coderabbit nitpicks pt 2
* some updates
* almost done
* move all upgrade stuff to release notes page.
* fix link
* fix anchors
* fix details
* uncomment
* add import
* hide again
2025-07-11 01:15:42 +00:00
51d3858ab2
docs: redirect link from template ( #8761 )
...
redirect-link-from-template
2025-06-27 22:04:13 +00:00
332738a317
docs: Build out Troubleshooting and Support documentation ( #8662 )
...
* change luna to enterprise support
* community page updates
* combine issues and discussions pages
* move telemetry out of contribute
* remove gerund title
* rewrite issues page
* fix 2 anchors
* add troubleshooting page
* move troubleshooting and extras from install
* add some more issues
* coderabbit
2025-06-23 16:16:40 +00:00
d4fca1fe40
docs: merge starter projects and sample flows into templates ( #8652 )
...
* move-pages-and-add-redirects
* move-vector-rag-in-list
2025-06-20 18:34:30 +00:00
a161753a57
Docs: rename and redirect system assist component to g-assist component ( #8317 )
...
* add-redirect
* sidebars-and-filename
* Apply suggestions from code review
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
---------
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
2025-06-05 17:23:44 +00:00
22330abf9c
docs: new logos ( #8357 )
...
* add-new-svgs
* refactor: update logo SVGs in Docusaurus config
2025-06-05 15:46:03 +00:00
501660d742
docs: cookie-banner-link ( #8179 )
...
cookie-banner-link
2025-05-22 14:58:57 +00:00
b52c38cc27
docs: remove the loaders page and redirect to bundles ( #8066 )
...
remove-and-redirect-loaders-page-build-successful
2025-05-15 18:06:38 +00:00
744df31f18
docs: v1.4 features ( #7778 )
...
* bump-supported-version-to-1.4.x
* overview-page
* small-naming-changes
* change-folders-to-projects
* api-examples-folder-to-projects
* more
* update-screenshots-and-text
* sidebars
* npx-astra-command
* move-and-redirect-outdated-page
* sidebars
* tools-and-env-var
* language
* authentication
* flow-description-and-tool
* mcp-component-astra-db
* rename-page
* cleanup
* update-message
* update-for-client-strategy
* sse-port-7868-and-api-key-creation
* external-deploy
* init-ngrok
* add-ngrok-deploy
* cleanup
* cleanup
* Minor capitalization fix
* Fix message object anchors
* Fix indentation of MCP server procedure
* Add anchor link for MCP SSE mode
* Mild cleanup of concepts overview
* Fix indentation issues in mcp-component-astra
* Use universal date format on luna-for-langflow
* Update mcp-server doc
* fix-missed-bracket
* change-npx-to-uvx-mcp-proxy
* update-screenshots-for-uvx
* inspector-with-auth
* Apply suggestions from code review
Co-authored-by: Eric Schneider <37347760+eric-schneider@users.noreply.github.com >
---------
Co-authored-by: Deon Sanchez <69873175+deon-sanchez@users.noreply.github.com >
Co-authored-by: Eric Schneider <37347760+eric-schneider@users.noreply.github.com >
Co-authored-by: Lucas Oliveira <lucas.edu.oli@hotmail.com >
2025-05-06 16:41:07 +00:00
102946be72
docs: Adding Best practices for Deploying and Running Langflow in production ( #7311 )
...
* Adding Best practices on running Langflow in production
* combine-content
* combine-more-content-and-sidebars
* sidebars
* docs: add deployment guide for Langflow development environment on Kubernetes
- Introduced a new page for deploying the Langflow IDE in a development environment on Kubernetes.
- Updated sidebar to reflect the new deployment guide.
- Adjusted existing documentation links to point to the new development deployment page.
* combine-more-content-and-sidebars
* combine-more-content-and-sidebars
* Enhance docs: Dark mode messaging, fix link, update title, reorder pages
- Enhanced the messages for Dark Mode support
- Fixed broken link in Deployment Docker pointing to Deployment Kubernetes
- Updated title to 'Langflow Architecture and Best Practices' from 'Langflow Best Practices'
- Changed ordering of pages in Deployment Kubernetes section
* Restore missing content
* Cleaning stale changes in sidebars
* Update docs/docs/Deployment/deployment-prod-best-practices.md
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
* Update docs/docs/Deployment/deployment-prod-best-practices.md
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
* Update docs/docs/Deployment/deployment-prod-best-practices.md
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
* Update docs/docs/Deployment/deployment-prod-best-practices.md
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
* Update docs/docs/Develop/develop-application.md
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Update docs/docs/Deployment/deployment-prod-best-practices.md
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Update docs/docs/Deployment/deployment-prod-best-practices.md
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Update docs/docs/Deployment/deployment-prod-best-practices.md
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Update docs/docs/Deployment/deployment-prod-best-practices.md
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Update docs/docs/Deployment/deployment-kubernetes-dev.md
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Update docs/docs/Deployment/deployment-kubernetes-dev.md
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Update docs/docs/Deployment/deployment-kubernetes-dev.md
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Update docs/docs/Deployment/deployment-kubernetes-dev.md
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Update docs/docs/Deployment/deployment-docker.md
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Update docs/docs/Deployment/deployment-kubernetes-prod.md
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Update docs/docs/Deployment/deployment-kubernetes-prod.md
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Apply suggestions from code review
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Update docs/docs/Deployment/deployment-prod-best-practices.md
Co-authored-by: Eric Schneider <37347760+eric-schneider@users.noreply.github.com >
* Apply suggestions from code review
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
---------
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
Co-authored-by: Eric Schneider <37347760+eric-schneider@users.noreply.github.com >
2025-05-05 21:49:32 +00:00
0bf81f0bdc
docs: add ketch management banner ( #7503 )
...
* feat: Add Ketch consent management and privacy preference link to docusaurus config
* feat: Update Docusaurus footer and Ketch privacy management
- Modify Ketch script configuration for better performance
- Enhance footer styling with dark theme and copyright
- Add dynamic load for region-specific privacy link
- Update sitemap configuration to ignore preferences page
* Styled footer
* fix-merge-error
* update script to remove link if in default jurisdiction and handle GA… (#7508 )
* update script to remove link if in default jurisdiction and handle GA4 tracking
* add test ketch property so we can test in feature branch
* Fix ketch script issue (#7509 )
* add new html sidebar item with custom styles and new font
* update script to remove link if in default jurisdiction and handle GA4 tracking
* add test ketch property so we can test in feature branch
* fix script for ketch
---------
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
* Fix Ketch script again (#7513 )
* add new html sidebar item with custom styles and new font
* update script to remove link if in default jurisdiction and handle GA4 tracking
* add test ketch property so we can test in feature branch
* fix script for ketch
* Update footer css and fix ketch script
* add production logic back in
---------
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
* remove-region-check
* make-footer-not-hide-ad
---------
Co-authored-by: Lucas Oliveira <lucas.edu.oli@hotmail.com >
Co-authored-by: Cole Goldsmith <cole.b.goldsmith@gmail.com >
2025-04-15 17:00:55 +00:00
24a052f70c
fix: update Google Analytics tracking ID in docusaurus configuration ( #7539 )
...
* fix: update Google Analytics tracking ID in docusaurus configuration
* empty-commit
2025-04-09 23:17:56 +00:00
8a1b64ed77
docs: gtag management ( #7491 )
...
* remove-tag-manager
* update-gtag-tracking-id
* add-head-tag
* remove Google Analytics gtag configuration from docusaurus.config.js
* fix-hydration-error
* revert-to-easy-way
* standard-gtag
* broken-link
* refactor: streamline Google Tag Manager script configuration in docusaurus.config.js
* Apply suggestions from code review
Co-authored-by: Lucas Oliveira <62335616+lucaseduoli@users.noreply.github.com >
---------
Co-authored-by: Lucas Oliveira <62335616+lucaseduoli@users.noreply.github.com >
2025-04-08 17:16:45 +00:00
eb4e6ae87e
docs: clean up configuration folder ( #7426 )
...
* remove-config-pages
* redirect-and-remove-from-sidebars
* add-note-about-backend-only
* redirects-and-sidebar
* fix-plaintext-linting-errors
* cli-page
2025-04-07 21:10:09 +00:00
ac8464cdb2
docs: clean up starter flows and screenshots ( #7428 )
...
* quickstart-use-parser
* update-screenshots
* blog-writer
* document-qa
* remove-math-agent-and-redirect
* other-starter-flows
* swap-message-history-and-message-store
* link
* prerequisite-language
* Apply suggestions from code review
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* docs: update prerequisite phrasing for clarity
* add-running-instance-to-quickstart
* bullets
* quickstart-spacing
---------
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
2025-04-07 14:31:48 +00:00
a04b0b19b4
docs: rename tutorials to sample-flows ( #7307 )
...
* builds-and-serves-no-errors
* Apply suggestions from code review
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* update-links
---------
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
2025-04-01 14:04:20 +00:00
37fc581472
docs: v1.3 ( #7160 )
...
* lint-plaintext
* Squashed commit of the following:
commit 0820877007
Author: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
Date: Wed Feb 19 17:34:54 2025 -0500
fix-links
commit b47fbfe04e
Merge: 22987155fa 02617ffad2
Author: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
Date: Wed Feb 19 17:18:18 2025 -0500
Merge branch 'main' into docs-publish-v0
commit 22987155fa
Merge: bf01a75e72 e8529eaecb
Author: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
Date: Wed Feb 19 16:25:52 2025 -0500
Merge branch 'main' into docs-publish-v0
commit bf01a75e72
Merge: 85770ae167 b43bf8f783
Author: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
Date: Wed Feb 19 14:42:10 2025 -0500
Merge branch 'main' into docs-publish-v0
commit 85770ae167
Merge: fda54f8f43 e970cdbca3
Author: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
Date: Wed Feb 19 11:19:11 2025 -0500
Merge branch 'main' into docs-publish-v0
commit fda54f8f43
Merge: 3027a9c3a4 25ac555e8f
Author: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
Date: Tue Feb 18 11:43:21 2025 -0500
Merge branch 'main' into docs-publish-v0
commit 3027a9c3a4
Merge: 0046d1884e 45e2f739d5
Author: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
Date: Fri Feb 14 13:20:44 2025 -0500
Merge branch 'main' into docs-publish-v0
commit 0046d1884e
Author: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
Date: Thu Feb 13 13:31:22 2025 -0500
delete-site-and-redirect
commit 1bf763b3b1
Author: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
Date: Thu Feb 13 13:17:49 2025 -0500
docs: Add information about sharing the Langflow application's Playground endpoint
commit 4eb34bd746
Author: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
Date: Thu Feb 13 13:06:46 2025 -0500
docs: Update references from "API pane" to "Publish pane" in documentation
* s3-bucket-init
* add-bundles-page
* output-parser-component
* language-model-component
* legacy-components
* update-file-component
* parser-component
* publish-doc
* update-agent-starter-flows
* voice-mode
* webhook-component-update
* file-management
* update-env-vars
* make-env-var-table-more-readable
* file-management-link
* bump-version
* add-graph-rag-component
* docs-lambda-filter-component
* docs-add-watsonx-model-component
* add-langchain-links-for-watson-package
* remove-s3-bucket-data-component
* docs: publish-flows introduction
* docs: update voice mode instructions for clarity and detail
* Apply suggestions from code review
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Apply suggestions from code review
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Apply suggestions from code review
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* Apply suggestions from code review
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* plurals
* docs-review
* Apply suggestions from code review
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* steps-for-file-component
* parse-data-and-dataframe-in-legacy
* remove-beta-from-parser-component
---------
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
2025-03-31 16:05:23 -03:00
b9aed459b0
Docs: Create styled link to DataStax Langflow in the sidebar ( #7143 )
...
add new html sidebar item with custom styles and new font
Co-authored-by: Mendon Kissling <59585235+mendonk@users.noreply.github.com >
2025-03-20 18:29:16 +00:00
dc9dc91154
docs: Allow setting baseUrl configuration via ENV variable ( #7021 )
2025-03-11 19:24:29 +00:00
c57ed6f464
docs: updates for release ( #6762 )
...
* chat-io-new-inputs
* split-text-new-inputs-and-outputs
* update-structured-data-io
* bump-python-prereq-to-3.13
* reactflow
* structured-output-component
* chat-io-page-cleanup
* typo
* collapse-nav-by-default
* move-up-api-in-sidebar
* add-text-output-to-duck-duck-go
* Apply suggestions from code review
Co-authored-by: Edwin Jose <edwin.jose@datastax.com >
* clarify-chat-and-text-inputs
* changes-for-text-io
* no-playground-output
* Apply suggestions from code review
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
* code-review
---------
Co-authored-by: Edwin Jose <edwin.jose@datastax.com >
Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com >
2025-02-25 23:08:18 +00:00
eb8db05634
docs: replace mendable with algolia ( #6694 )
...
* add-algolia-to-config
* remove-mendable-search-bar
* remove-mendable-yarn-lockfile
* yarn-lockfile
* replace-mendable-in-footer-component
* Update yarn.lock to use Yarn registry URLs
* lockfile-use-npm-registry
2025-02-18 21:06:56 +00:00
a4a70d4aea
docs: ui improvements ( #6317 )
...
* use-yarn-not-npm
* swap-api-menu-items
* fix-errors
* force-sidebar-open
* increase-custom-css-values
2025-02-13 19:59:12 +00:00
9ba0c9ce13
fix: update documentation links for Custom Component to use the correct URL ( #6145 )
...
Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org >
2025-02-06 22:39:05 +00:00
0d11564dea
docs: v1.1.2 ( #5850 )
...
* docs:add-changelog-to-nav
* docs: add OpenRouter component documentation with detailed inputs and outputs
* docs: add Outputs section to components-models documentation for Cohere and Ollama
* docs: update references from configuration-objects to concepts-objects across multiple components and documentation files
* feat: Add DataFrame operations section to components-processing documentation
* title-case-in-nav
* fix-memories-tab-in-chat-memory
* tool-calling-agent-update
* feat: enhance documentation with icon imports and improved instructions for OpenAI component
* material-icon
* fix: update documentation for tool mode input connection in agent component
* add-loop-component
* add-img-for-loop-summary
* feat: add documentation for using logic components in a flow with examples
* fix: enhance documentation for Loop component with detailed data flow explanation
* redirect-for-config-objects-page
* fix: improve error handling in data processing module
* fix: update documentation for Data objects in Loop component and add import statement in memory chatbot tutorial
* quickstart-screenshots
* docs: update starter flow images
* update-agent-screenshots
* move-repl-agent
* docs: enhance global variables documentation and clarify prerequisites for vector store RAG flow
* docs: update Simple Agent to use URL component
* docs: enhance memory chatbot tutorial with example conversation and clarify session ID terminology
* docs: update visibility icon description in concepts-components.md
* Apply suggestions from code review
Co-authored-by: brian-f <brian.fisher@datastax.com >
* correct-playground-sequence-and-typo
---------
Co-authored-by: brian-f <brian.fisher@datastax.com >
2025-01-24 14:24:57 +00:00