Added warning of outdated information to all components

This commit is contained in:
Lucas Oliveira 2024-06-24 08:31:18 -03:00 committed by Gabriel Luiz Freitas Almeida
commit 9b88eab828
70 changed files with 303 additions and 0 deletions

View file

@ -5,6 +5,10 @@ import ZoomableImage from "/src/theme/ZoomableImage.js";
# LangSmith
<Admonition type="warning" title="warning">
This page may contain outdated information. It will be updated as soon as possible.
</Admonition>
LangSmith is a full-lifecycle DevOps service from LangChain that provides monitoring and observability. To integrate with Langflow, just add your LangChain API key as a Langflow environment variable and you are good to go!
## Step-by-step Configuration

View file

@ -5,6 +5,10 @@ import ZoomableImage from "/src/theme/ZoomableImage.js";
# Add Content To Page
<Admonition type="warning" title="warning">
This page may contain outdated information. It will be updated as soon as possible.
</Admonition>
The `AddContentToPage` component converts markdown text to Notion blocks and appends them to a Notion page.
[Notion Reference](https://developers.notion.com/reference/patch-block-children)

View file

@ -5,6 +5,10 @@ import ZoomableImage from "/src/theme/ZoomableImage.js";
# Introduction to Notion in Langflow
<Admonition type="warning" title="warning">
This page may contain outdated information. It will be updated as soon as possible.
</Admonition>
The Notion integration in Langflow enables seamless connectivity with Notion databases, pages, and users, facilitating automation and improving productivity.
<ZoomableImage

View file

@ -5,6 +5,10 @@ import ZoomableImage from "/src/theme/ZoomableImage.js";
# Database Properties
<Admonition type="warning" title="warning">
This page may contain outdated information. It will be updated as soon as possible.
</Admonition>
The `NotionDatabaseProperties` component retrieves properties of a Notion database. It provides a convenient way to integrate Notion database information into your Langflow workflows.
[Notion Reference](https://developers.notion.com/reference/post-database-query)

View file

@ -5,6 +5,10 @@ import ZoomableImage from "/src/theme/ZoomableImage.js";
# List Pages
<Admonition type="warning" title="warning">
This page may contain outdated information. It will be updated as soon as possible.
</Admonition>
The `NotionListPages` component queries a Notion database with filtering and sorting. It provides a convenient way to integrate Notion database querying capabilities into your Langflow workflows.
[Notion Reference](https://developers.notion.com/reference/post-database-query)

View file

@ -5,6 +5,10 @@ import ZoomableImage from "/src/theme/ZoomableImage.js";
# User List
<Admonition type="warning" title="warning">
This page may contain outdated information. It will be updated as soon as possible.
</Admonition>
The `NotionUserList` component retrieves users from Notion. It provides a convenient way to integrate Notion user data into your Langflow workflows.
[Notion Reference](https://developers.notion.com/reference/get-users)

View file

@ -5,6 +5,10 @@ import ZoomableImage from "/src/theme/ZoomableImage.js";
# Page Content
<Admonition type="warning" title="warning">
This page may contain outdated information. It will be updated as soon as possible.
</Admonition>
The `NotionPageContent` component retrieves the content of a Notion page as plain text. It provides a convenient way to integrate Notion page content into your Langflow workflows.
[Notion Reference](https://developers.notion.com/reference/get-page)

View file

@ -5,6 +5,10 @@ import ZoomableImage from "/src/theme/ZoomableImage.js";
# Page Create
<Admonition type="warning" title="warning">
This page may contain outdated information. It will be updated as soon as possible.
</Admonition>
The `NotionPageCreator` component creates pages in a Notion database. It provides a convenient way to integrate Notion page creation into your Langflow workflows.
[Notion Reference](https://developers.notion.com/reference/patch-block-children)

View file

@ -5,6 +5,10 @@ import ZoomableImage from "/src/theme/ZoomableImage.js";
# Page Update
<Admonition type="warning" title="warning">
This page may contain outdated information. It will be updated as soon as possible.
</Admonition>
The `NotionPageUpdate` component updates the properties of a Notion page. It provides a convenient way to integrate updating Notion page properties into your Langflow workflows.
[Notion Reference](https://developers.notion.com/reference/patch-page)

View file

@ -5,6 +5,10 @@ import ZoomableImage from "/src/theme/ZoomableImage.js";
# Notion Search
<Admonition type="warning" title="warning">
This page may contain outdated information. It will be updated as soon as possible.
</Admonition>
The `NotionSearch` component is designed to search all pages and databases that have been shared with an integration in Notion. It provides a convenient way to integrate Notion search capabilities into your Langflow workflows.
[Notion Reference](https://developers.notion.com/reference/search)

View file

@ -2,6 +2,10 @@ import Admonition from "@theme/Admonition";
# Setting up a Notion App
<Admonition type="warning" title="warning">
This page may contain outdated information. It will be updated as soon as possible.
</Admonition>
To use Notion components in Langflow, you first need to create a Notion integration and configure it with the necessary capabilities. This guide will walk you through the process of setting up a Notion integration and granting it access to your Notion databases.
## Prerequisites