From e3a7c96a8e0de7ce94ff93f3224eac111d5476c0 Mon Sep 17 00:00:00 2001 From: Martin Jul Date: Fri, 1 Dec 2023 22:29:53 +0100 Subject: [PATCH] docs[patch]: Fix minor typos (casing) in quickstart (#14138) Fix casing of API and LangChain in the description text for the LangServe example server. --- 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 70b9b8f571..c51e21779b 100644 --- a/docs/docs/get_started/quickstart.mdx +++ b/docs/docs/get_started/quickstart.mdx @@ -344,7 +344,7 @@ category_chain = chat_prompt | ChatOpenAI() | CommaSeparatedListOutputParser() app = FastAPI( title="LangChain Server", version="1.0", - description="A simple api server using Langchain's Runnable interfaces", + description="A simple API server using LangChain's Runnable interfaces", ) # 3. Adding chain route