From 7dc258d580a398f699b01063ea0e0ef9c4323c14 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Tue, 22 Aug 2023 17:43:15 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs(utilities.mdx):=20update=20?= =?UTF-8?q?Utilities=20section=20in=20the=20sidebar=20to=20include=20the?= =?UTF-8?q?=20new=20"Utilities"=20page=20=F0=9F=93=9D=20docs(sidebars.js):?= =?UTF-8?q?=20add=20"components/utilities"=20to=20the=20Components=20secti?= =?UTF-8?q?on=20in=20the=20sidebar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/docs/components/utilities.mdx | 10 +++++++++- docs/sidebars.js | 1 + 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/docs/components/utilities.mdx b/docs/docs/components/utilities.mdx index 1bd36e035..87974d0bb 100644 --- a/docs/docs/components/utilities.mdx +++ b/docs/docs/components/utilities.mdx @@ -10,7 +10,11 @@ import Admonition from "@theme/Admonition";

-### Get Request +Utilities are a set of actions that can be used to perform common tasks in a flow. They are available in the **Utilities** section in the sidebar. + +--- + +### GET Request Make a GET request to the given URL. @@ -23,6 +27,8 @@ Make a GET request to the given URL. - **List of Documents:** A list of Documents containing the JSON response from each request. +--- + ### POST Request Make a POST request to the given URL. @@ -37,6 +43,8 @@ Make a POST request to the given URL. - **Document:** The JSON response from the request as a Document. +--- + ### Update Request Make a PATCH or PUT request to the given URL. diff --git a/docs/sidebars.js b/docs/sidebars.js index fbabab150..e44b1cf4f 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -42,6 +42,7 @@ module.exports = { "components/text-splitters", "components/toolkits", "components/tools", + "components/utilities", "components/vector-stores", "components/wrappers", ],