From 8a6dfae8d7b58646fba1bacb965a44ff5e74a88d Mon Sep 17 00:00:00 2001 From: Mendon Kissling <59585235+mendonk@users.noreply.github.com> Date: Tue, 28 May 2024 11:26:43 -0400 Subject: [PATCH] title-case --- docs/docs/administration/global-env.mdx | 2 +- docs/docs/administration/login.mdx | 2 +- docs/docs/contributing/contribute-component.md | 2 +- docs/docs/getting-started/canvas.mdx | 2 +- docs/docs/starter-projects/basic-prompting.mdx | 2 +- docs/docs/starter-projects/blog-writer.mdx | 2 +- docs/docs/starter-projects/memory-chatbot.mdx | 2 +- docs/docs/starter-projects/vector-store-rag.mdx | 2 +- docs/docs/tutorials/chatprompttemplate_guide.mdx | 2 +- docs/docs/tutorials/loading_document.mdx | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/docs/administration/global-env.mdx b/docs/docs/administration/global-env.mdx index 249981409..c23ca8dd1 100644 --- a/docs/docs/administration/global-env.mdx +++ b/docs/docs/administration/global-env.mdx @@ -2,7 +2,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; import Admonition from "@theme/Admonition"; import ReactPlayer from "react-player"; -# Global environment variables +# Global Environment Variables Langflow 1.0 alpha includes the option to add **Global Environment Variables** for your application. diff --git a/docs/docs/administration/login.mdx b/docs/docs/administration/login.mdx index 1d5a1d031..d5d7c1989 100644 --- a/docs/docs/administration/login.mdx +++ b/docs/docs/administration/login.mdx @@ -4,7 +4,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; import ReactPlayer from "react-player"; import Admonition from "@theme/Admonition"; -# Sign up and Sign in +# Sign Up and Sign In ## Introduction diff --git a/docs/docs/contributing/contribute-component.md b/docs/docs/contributing/contribute-component.md index b178a5882..f638434e2 100644 --- a/docs/docs/contributing/contribute-component.md +++ b/docs/docs/contributing/contribute-component.md @@ -1,6 +1,6 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; -# How to contribute components? +# How to Contribute Components? As of Langflow 1.0 alpha, new components are added as objects of the [CustomComponent](https://github.com/langflow-ai/langflow/blob/dev/src/backend/base/langflow/interface/custom/custom_component/custom_component.py) class and any dependencies are added to the [pyproject.toml](https://github.com/langflow-ai/langflow/blob/dev/pyproject.toml#L27) file. diff --git a/docs/docs/getting-started/canvas.mdx b/docs/docs/getting-started/canvas.mdx index bd210881f..b16807b66 100644 --- a/docs/docs/getting-started/canvas.mdx +++ b/docs/docs/getting-started/canvas.mdx @@ -4,7 +4,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; import ReactPlayer from "react-player"; import Admonition from "@theme/Admonition"; -# 🎨 Langflow canvas +# 🎨 Langflow Canvas The **Langflow canvas** is the central hub of Langflow, where you'll assemble new flows from components, run them, and see the results. diff --git a/docs/docs/starter-projects/basic-prompting.mdx b/docs/docs/starter-projects/basic-prompting.mdx index ef333643f..3138fea02 100644 --- a/docs/docs/starter-projects/basic-prompting.mdx +++ b/docs/docs/starter-projects/basic-prompting.mdx @@ -4,7 +4,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; import ReactPlayer from "react-player"; import Admonition from "@theme/Admonition"; -# Basic prompting +# Basic Prompting Prompts serve as the inputs to a large language model (LLM), acting as the interface between human instructions and computational tasks. diff --git a/docs/docs/starter-projects/blog-writer.mdx b/docs/docs/starter-projects/blog-writer.mdx index 411233c8b..25861a7e5 100644 --- a/docs/docs/starter-projects/blog-writer.mdx +++ b/docs/docs/starter-projects/blog-writer.mdx @@ -4,7 +4,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; import ReactPlayer from "react-player"; import Admonition from "@theme/Admonition"; -# Blog writer +# Blog Writer Build a blog writer with OpenAI that uses URLs for reference content. diff --git a/docs/docs/starter-projects/memory-chatbot.mdx b/docs/docs/starter-projects/memory-chatbot.mdx index e9560d9e5..1022b5eb2 100644 --- a/docs/docs/starter-projects/memory-chatbot.mdx +++ b/docs/docs/starter-projects/memory-chatbot.mdx @@ -4,7 +4,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; import ReactPlayer from "react-player"; import Admonition from "@theme/Admonition"; -# Memory chatbot +# Memory Chatbot This flow extends the [basic prompting flow](./basic-prompting.mdx) to include chat memory for unique SessionIDs. diff --git a/docs/docs/starter-projects/vector-store-rag.mdx b/docs/docs/starter-projects/vector-store-rag.mdx index fda7e432b..136006a5f 100644 --- a/docs/docs/starter-projects/vector-store-rag.mdx +++ b/docs/docs/starter-projects/vector-store-rag.mdx @@ -4,7 +4,7 @@ import ZoomableImage from "/src/theme/ZoomableImage.js"; import ReactPlayer from "react-player"; import Admonition from "@theme/Admonition"; -# Vector store RAG +# Vector Store RAG Retrieval Augmented Generation, or RAG, is a pattern for training LLMs on your data and querying it. diff --git a/docs/docs/tutorials/chatprompttemplate_guide.mdx b/docs/docs/tutorials/chatprompttemplate_guide.mdx index 05a8f3333..48059b134 100644 --- a/docs/docs/tutorials/chatprompttemplate_guide.mdx +++ b/docs/docs/tutorials/chatprompttemplate_guide.mdx @@ -3,7 +3,7 @@ import useBaseUrl from "@docusaurus/useBaseUrl"; import ZoomableImage from "/src/theme/ZoomableImage.js"; import ReactPlayer from "react-player"; -# Building chatbots with System Message +# Building Chatbots with System Message ## Overview diff --git a/docs/docs/tutorials/loading_document.mdx b/docs/docs/tutorials/loading_document.mdx index 73fb85968..4a6143a0e 100644 --- a/docs/docs/tutorials/loading_document.mdx +++ b/docs/docs/tutorials/loading_document.mdx @@ -3,7 +3,7 @@ import useBaseUrl from "@docusaurus/useBaseUrl"; import ZoomableImage from "/src/theme/ZoomableImage.js"; import ReactPlayer from "react-player"; -# Integrating documents with prompt variables +# Integrating Documents with Prompt Variables ## Overview