diff --git a/docs/docs/modules/model_io/prompts/prompt_templates/msg_prompt_templates.mdx b/docs/docs/modules/model_io/prompts/prompt_templates/msg_prompt_templates.mdx index 4eafb0c973..22c73a88f8 100644 --- a/docs/docs/modules/model_io/prompts/prompt_templates/msg_prompt_templates.mdx +++ b/docs/docs/modules/model_io/prompts/prompt_templates/msg_prompt_templates.mdx @@ -27,6 +27,8 @@ LangChain also provides `MessagesPlaceholder`, which gives you full control of w ```python from langchain.prompts import MessagesPlaceholder +from langchain.prompts import HumanMessagePromptTemplate +from langchain.prompts import ChatPromptTemplate human_prompt = "Summarize our conversation so far in {word_count} words." human_message_template = HumanMessagePromptTemplate.from_template(human_prompt) @@ -36,6 +38,8 @@ chat_prompt = ChatPromptTemplate.from_messages([MessagesPlaceholder(variable_nam ```python +from langchain.schema.messages import HumanMessage, AIMessage + human_message = HumanMessage(content="What is the best way to learn programming?") ai_message = AIMessage(content="""\ 1. Choose a programming language: Decide on a programming language that you want to learn.