Skip to content

fix: Agentics bundle documentation fix#12187

Open
gliozzo wants to merge 2 commits intolangflow-ai:mainfrom
gliozzo:agentic-budle-documentation-fix
Open

fix: Agentics bundle documentation fix#12187
gliozzo wants to merge 2 commits intolangflow-ai:mainfrom
gliozzo:agentic-budle-documentation-fix

Conversation

@gliozzo
Copy link
Copy Markdown
Contributor

@gliozzo gliozzo commented Mar 13, 2026

After extensive testing of the agentics bundle in langflow we found a few bugs related to serialization of dataframes in the agentics-py libraries. We fixed them , releasing a new version 0.3.3 which is also the latest in agentics-py.

Since the documentation was referring to a bugged version 0.3.2 , I updated it to reflect the latest distributions.

Also in the agentics code, a warning need to be updated but we'll do that in 1.9 release.

This PR is just a few lines of chages. It should be updated ASAP, to prevent users to encounter that bug , which is relatively frequent now.

Summary by CodeRabbit

  • Documentation
    • Updated installation prerequisites with additional setup requirements.
    • Added startup instructions following installation.
    • Enhanced component configuration labels with clearer guidance.
    • Improved error guidance for dependency-related issues.

@github-actions github-actions Bot added the community Pull Request from an external contributor label Mar 13, 2026
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Mar 13, 2026

Walkthrough

Documentation update for the Agentics components guide. Changes include adding Langflow installation prerequisites, updating Agentics package installation instructions from a pinned version to generic reference, adding Langflow startup command, and updating component instruction labels and error guidance text.

Changes

Cohort / File(s) Summary
Documentation Updates
docs/docs/Components/bundles-agentics.mdx
Added Langflow installation prerequisite with startup command; updated Agentics installation from pinned version (0.3.1) to generic package with version recommendation (0.3.3); updated aGenerate component instruction label to include "Advanced" prefix; revised aMap/aReduce error guidance for generic installation reference.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

🚥 Pre-merge checks | ✅ 7
✅ Passed checks (7 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Test Coverage For New Implementations ✅ Passed PR contains only documentation updates to bundles-agentics.mdx with no code changes, new components, features, or bug fixes requiring test coverage.
Test Quality And Coverage ✅ Passed PR contains only documentation updates to docs/docs/Components/bundles-agentics.mdx with no code implementation requiring test coverage.
Test File Naming And Structure ✅ Passed This PR is documentation-only, modifying bundles-agentics.mdx with no test files created or modified.
Excessive Mock Usage Warning ✅ Passed The custom check for excessive mock usage in test files is not applicable to this PR. The PR only modifies documentation, and no test files are modified or added.
Title check ✅ Passed The title accurately reflects the main change: updating Agentics bundle documentation to reference the latest bug-fixed version (0.3.3) and correcting installation instructions.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
📝 Coding Plan
  • Generate coding plan for human review comments

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Tip

You can disable the changed files summary in the walkthrough.

Disable the reviews.changed_files_summary setting to disable the changed files summary in the walkthrough.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
docs/docs/Components/bundles-agentics.mdx (1)

19-19: ⚠️ Potential issue | 🟡 Minor

Pre-existing typo in schema table description.

Line 19 contains "-componentthe" which appears to be a typo (should likely be "the").

📝 Proposed fix
-| As List | Boolean | If true, field is a list of -componentthe specified type (e.g. list[str]) | No |
+| As List | Boolean | If true, field is a list of the specified type (e.g. list[str]) | No |
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/docs/Components/bundles-agentics.mdx` at line 19, Fix the typo in the
schema table row that currently reads "| As List | Boolean | If true, field is a
list of -componentthe specified type (e.g. list[str]) | No |": replace
"-componentthe" with "the" so the cell reads "If true, field is a list of the
specified type (e.g. list[str])". Locate the row by searching for the text
fragment "As List | Boolean" or the exact string "-componentthe" and update the
sentence accordingly.
🧹 Nitpick comments (2)
docs/docs/Components/bundles-agentics.mdx (2)

33-35: Use an admonition for the version recommendation note.

The note on line 35 should use proper Docusaurus admonition syntax (:::note) for consistency with documentation standards. Also, "note" should be capitalized as a sentence start.

📝 Proposed fix using admonition
    ```bash
    uv pip install agentics-py
    ```
-   note: recommended distribution is agentics-py==0.3.3 
+
+   :::note
+   The recommended distribution is `agentics-py==0.3.3`.
+   :::

As per coding guidelines: "Use admonitions (:::tip, :::warning, :::danger) for important information, warnings, and critical alerts in documentation."

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/docs/Components/bundles-agentics.mdx` around lines 33 - 35, Replace the
inline lowercase "note: recommended distribution is agentics-py==0.3.3" with a
Docusaurus admonition block — use :::note ... ::: and capitalize the sentence
(e.g., "The recommended distribution is `agentics-py==0.3.3`.") so the
documentation follows the project's admonition convention; locate the text
containing "agentics-py==0.3.3" in docs/docs/Components/bundles-agentics.mdx and
wrap it in the :::note admonition.

1-4: Front matter is missing required fields.

Per documentation guidelines, front matter should include description and sidebar_position fields in addition to title.

📝 Suggested front matter update
 ---
 title: Agentics
 slug: /bundles-agentics
+description: Transform tabular data using LLMs with Agentics components for mapping, reducing, and generating synthetic data.
+sidebar_position: 1
 ---

As per coding guidelines: "Front matter should include 'title', 'description', and 'sidebar_position' fields for documentation pages."

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/docs/Components/bundles-agentics.mdx` around lines 1 - 4, The front
matter in the MDX page is missing required fields; update the YAML front matter
block (the existing title entry) to include description and sidebar_position
alongside title by adding a short descriptive string for description and a
numeric value for sidebar_position so the page meets documentation guidelines
and renders correctly; ensure the keys are spelled exactly as title,
description, and sidebar_position.
🤖 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-agentics.mdx`:
- Around line 24-28: Update the prerequisite line in the code block so the
product name is capitalized and the indentation is fixed: change "langflow" to
"Langflow" in the displayed text and inside the fenced bash block, and reduce
the leading spaces before the command "uv pip install Langflow -U" from six to
three (ensure the code fence remains ```bash and the command is indented with
exactly three spaces).

---

Outside diff comments:
In `@docs/docs/Components/bundles-agentics.mdx`:
- Line 19: Fix the typo in the schema table row that currently reads "| As List
| Boolean | If true, field is a list of -componentthe specified type (e.g.
list[str]) | No |": replace "-componentthe" with "the" so the cell reads "If
true, field is a list of the specified type (e.g. list[str])". Locate the row by
searching for the text fragment "As List | Boolean" or the exact string
"-componentthe" and update the sentence accordingly.

---

Nitpick comments:
In `@docs/docs/Components/bundles-agentics.mdx`:
- Around line 33-35: Replace the inline lowercase "note: recommended
distribution is agentics-py==0.3.3" with a Docusaurus admonition block — use
:::note ... ::: and capitalize the sentence (e.g., "The recommended distribution
is `agentics-py==0.3.3`.") so the documentation follows the project's admonition
convention; locate the text containing "agentics-py==0.3.3" in
docs/docs/Components/bundles-agentics.mdx and wrap it in the :::note admonition.
- Around line 1-4: The front matter in the MDX page is missing required fields;
update the YAML front matter block (the existing title entry) to include
description and sidebar_position alongside title by adding a short descriptive
string for description and a numeric value for sidebar_position so the page
meets documentation guidelines and renders correctly; ensure the keys are
spelled exactly as title, description, and sidebar_position.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 2ef0583f-86a0-49bd-adc7-c8c5e97093b3

📥 Commits

Reviewing files that changed from the base of the PR and between 1dafc75 and f79876b.

📒 Files selected for processing (1)
  • docs/docs/Components/bundles-agentics.mdx

Comment on lines +24 to +28
0. Install langflow (if you haven't done it already)

```bash
uv pip install langflow -U
```
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Terminology and formatting issues in the new prerequisite.

  1. "langflow" should be capitalized as "Langflow" per terminology guidelines.
  2. The code block has inconsistent indentation (6 spaces instead of 3).
📝 Proposed fix
-0. Install langflow (if you haven't done it already)
+0. Install Langflow (if you haven't done so already)

    ```bash
-      uv pip install langflow -U
+   uv pip install langflow -U
    ```

As per coding guidelines: "Use sentence case for headers and capitalize Langflow, Component, Flow, and API terminology consistently."

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/docs/Components/bundles-agentics.mdx` around lines 24 - 28, Update the
prerequisite line in the code block so the product name is capitalized and the
indentation is fixed: change "langflow" to "Langflow" in the displayed text and
inside the fenced bash block, and reduce the leading spaces before the command
"uv pip install Langflow -U" from six to three (ensure the code fence remains
```bash and the command is indented with exactly three spaces).

@gliozzo gliozzo changed the title Agentic budle documentation fix Agentics bundle documentation fix Mar 13, 2026
Copy link
Copy Markdown
Member

@Cristhianzl Cristhianzl left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

@Cristhianzl Cristhianzl changed the title Agentics bundle documentation fix fix: Agentics bundle documentation fix Mar 13, 2026
@github-actions github-actions Bot added the bug Something isn't working label Mar 13, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bug Something isn't working community Pull Request from an external contributor

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants