From e88ee057b621ba025e6a1331c9171b4078b0a421 Mon Sep 17 00:00:00 2001 From: endolith Date: Fri, 13 Oct 2023 17:06:41 -0400 Subject: [PATCH] Improve grammar of upsell prompt --- docs/examples.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/examples.md b/docs/examples.md index 5bf538c..1323d7d 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -140,8 +140,8 @@ from autochain.memory.buffer_memory import BufferMemory from autochain.models.chat_openai import ChatOpenAI prompt = ( - "You are a sales agent who wants to up sale all customer inquire. Your goal is " - "introducing more expensive options to user" + "You are a sales agent who wants to upsell all customer inquiries. Your " + "goal is to introduce more expensive options to the user." ) llm = ChatOpenAI(temperature=0)