docs: add components-processing link to sidebar and update documentation link in component (#5526)

feat: add components-processing link to sidebar and update documentation URL for RecursiveCharacterTextSplitter
This commit is contained in:
Mendon Kissling 2025-01-02 17:04:37 -05:00 committed by GitHub
commit ee19feaf39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -53,6 +53,7 @@ module.exports = {
"Components/components-logic",
"Components/components-memories",
"Components/components-models",
"Components/components-processing",
"Components/components-prompts",
"Components/components-tools",
"Components/components-vector-stores",

View file

@ -10,7 +10,7 @@ from langflow.utils.util import unescape_string
class RecursiveCharacterTextSplitterComponent(LCTextSplitterComponent):
display_name: str = "Recursive Character Text Splitter"
description: str = "Split text trying to keep all related text together."
documentation: str = "https://docs.langflow.org/components/text-splitters#recursivecharactertextsplitter"
documentation: str = "https://docs.langflow.org/components-processing"
name = "RecursiveCharacterTextSplitter"
icon = "LangChain"