Skip to content

Commit 0bc27d6

Browse files
committed
Revert "docs: update component documentation links to individual pages"
This reverts commit 1da51d4.
1 parent 1da51d4 commit 0bc27d6

51 files changed

Lines changed: 51 additions & 51 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/lfx/src/lfx/components/Notion/create_page.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class NotionPageCreator(LCToolComponent):
1515
display_name: str = "Create Page "
1616
description: str = "A component for creating Notion pages."
17-
documentation: str = "https://docs.langflow.org/bundles-notion"
17+
documentation: str = "https://docs.langflow.org/integrations/notion/page-create"
1818
icon = "NotionDirectoryLoader"
1919

2020
inputs = [

src/lfx/src/lfx/components/Notion/list_database_properties.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
class NotionDatabaseProperties(LCToolComponent):
1313
display_name: str = "List Database Properties "
1414
description: str = "Retrieve properties of a Notion database."
15-
documentation: str = "https://docs.langflow.org/bundles-notion"
15+
documentation: str = "https://docs.langflow.org/integrations/notion/list-database-properties"
1616
icon = "NotionDirectoryLoader"
1717

1818
inputs = [

src/lfx/src/lfx/components/Notion/list_pages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class NotionListPages(LCToolComponent):
2121
'{"filter": {"property": "Status", "select": {"equals": "Done"}}, '
2222
'"sorts": [{"timestamp": "created_time", "direction": "descending"}]}'
2323
)
24-
documentation: str = "https://docs.langflow.org/bundles-notion"
24+
documentation: str = "https://docs.langflow.org/integrations/notion/list-pages"
2525
icon = "NotionDirectoryLoader"
2626

2727
inputs = [

src/lfx/src/lfx/components/Notion/list_users.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class NotionUserList(LCToolComponent):
1212
display_name = "List Users "
1313
description = "Retrieve users from Notion."
14-
documentation = "https://docs.langflow.org/bundles-notion"
14+
documentation = "https://docs.langflow.org/integrations/notion/list-users"
1515
icon = "NotionDirectoryLoader"
1616

1717
inputs = [

src/lfx/src/lfx/components/Notion/page_content_viewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
class NotionPageContent(LCToolComponent):
1313
display_name = "Page Content Viewer "
1414
description = "Retrieve the content of a Notion page as plain text."
15-
documentation = "https://docs.langflow.org/bundles-notion"
15+
documentation = "https://docs.langflow.org/integrations/notion/page-content-viewer"
1616
icon = "NotionDirectoryLoader"
1717

1818
inputs = [

src/lfx/src/lfx/components/Notion/search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class NotionSearch(LCToolComponent):
1414
display_name: str = "Search "
1515
description: str = "Searches all pages and databases that have been shared with an integration."
16-
documentation: str = "https://docs.langflow.org/bundles-notion"
16+
documentation: str = "https://docs.langflow.org/integrations/notion/search"
1717
icon = "NotionDirectoryLoader"
1818

1919
inputs = [

src/lfx/src/lfx/components/Notion/update_page_property.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
class NotionPageUpdate(LCToolComponent):
1616
display_name: str = "Update Page Property "
1717
description: str = "Update the properties of a Notion page."
18-
documentation: str = "https://docs.langflow.org/bundles-notion"
18+
documentation: str = "https://docs.langflow.org/integrations/notion/page-update"
1919
icon = "NotionDirectoryLoader"
2020

2121
inputs = [

src/lfx/src/lfx/components/altk/altk_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class ALTKAgentComponent(ALTKBaseAgentComponent):
4343

4444
display_name: str = "ALTK Agent"
4545
description: str = "Advanced agent with both pre-tool validation and post-tool processing capabilities."
46-
documentation: str = "https://docs.langflow.org/bundles-atlk"
46+
documentation: str = "https://docs.langflow.org/agents"
4747
icon = "zap"
4848
beta = True
4949
name = "ALTK Agent"

src/lfx/src/lfx/components/apify/apify_actor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class ApifyActorsComponent(Component):
2222
"Use Apify Actors to extract data from hundreds of places fast. "
2323
"This component can be used in a flow to retrieve data or as a tool with an agent."
2424
)
25-
documentation: str = "https://docs.langflow.org/bundles-apify"
25+
documentation: str = "http://docs.langflow.org/integrations-apify"
2626
icon = "Apify"
2727
name = "ApifyActors"
2828

src/lfx/src/lfx/components/cuga/cuga_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class CugaComponent(ToolCallingAgentComponent):
6666

6767
display_name: str = "Cuga"
6868
description: str = "Define the Cuga agent's policies, then assign it a task."
69-
documentation: str = "https://docs.langflow.org/bundles-cuga"
69+
documentation: str = "https://docs.langflow.org/agents"
7070
icon = "bot"
7171
name = "Cuga"
7272

0 commit comments

Comments
 (0)