From 96b56a4d4fc9ea978e5b7076de839b8dd18a147d Mon Sep 17 00:00:00 2001 From: Mario Angst Date: Mon, 13 Nov 2023 09:02:18 +0100 Subject: [PATCH] Typo fix to quickstart.mdx (#13178) - **Description:** I fixed a very small typo in the quickstart docs (BaeMessage -> BaseMessage) --- docs/docs/get_started/quickstart.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/get_started/quickstart.mdx b/docs/docs/get_started/quickstart.mdx index 7fcb20fc21..494a098d34 100644 --- a/docs/docs/get_started/quickstart.mdx +++ b/docs/docs/get_started/quickstart.mdx @@ -103,7 +103,7 @@ There are two types of language models: Strings are simple, but what exactly are messages? The base message interface is defined by `BaseMessage`, which has two required attributes: - `content`: The content of the message. Usually a string. -- `role`: The entity from which the `BaeMessage` is coming. +- `role`: The entity from which the `BaseMessage` is coming. LangChain provides several objects to easily distinguish between different roles: