mirror of
https://github.com/hwchase17/langchain
synced 2024-11-16 06:13:16 +00:00
- **Description:** Fixed missing imports in docs - **Issue:** [#13736](https://github.com/langchain-ai/langchain/issues/13736) - **Dependencies:** N/A
This commit is contained in:
parent
6463d2d0bd
commit
d0b818b634
@ -27,6 +27,8 @@ LangChain also provides `MessagesPlaceholder`, which gives you full control of w
|
|||||||
|
|
||||||
```python
|
```python
|
||||||
from langchain.prompts import MessagesPlaceholder
|
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_prompt = "Summarize our conversation so far in {word_count} words."
|
||||||
human_message_template = HumanMessagePromptTemplate.from_template(human_prompt)
|
human_message_template = HumanMessagePromptTemplate.from_template(human_prompt)
|
||||||
@ -36,6 +38,8 @@ chat_prompt = ChatPromptTemplate.from_messages([MessagesPlaceholder(variable_nam
|
|||||||
|
|
||||||
|
|
||||||
```python
|
```python
|
||||||
|
from langchain.schema.messages import HumanMessage, AIMessage
|
||||||
|
|
||||||
human_message = HumanMessage(content="What is the best way to learn programming?")
|
human_message = HumanMessage(content="What is the best way to learn programming?")
|
||||||
ai_message = AIMessage(content="""\
|
ai_message = AIMessage(content="""\
|
||||||
1. Choose a programming language: Decide on a programming language that you want to learn.
|
1. Choose a programming language: Decide on a programming language that you want to learn.
|
||||||
|
Loading…
Reference in New Issue
Block a user