1
0
mirror of https://github.com/hwchase17/langchain.git synced 2025-05-05 15:18:32 +00:00

docs: Fixed grammar mistake ()

Description: Changed "You are" to "You are a". Grammar issue.
Dependencies: None

Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com>
This commit is contained in:
A Noor 2024-04-21 22:55:05 -04:00 committed by GitHub
parent bb69819267
commit 939d113d10
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -194,7 +194,7 @@ Prompt templates convert raw user input to better input to the LLM.
```python
from langchain_core.prompts import ChatPromptTemplate
prompt = ChatPromptTemplate.from_messages([
("system", "You are world class technical documentation writer."),
("system", "You are a world class technical documentation writer."),
("user", "{input}")
])
```