mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
ChatPromptTemplate: minor fix in doc string (#8424)
Minor fix in doc-string to use `ai` rather than `assistant`
This commit is contained in:
parent
760c278fe0
commit
e62a1686e2
@ -274,7 +274,7 @@ class ChatPromptTemplate(BaseChatPromptTemplate, ABC):
|
||||
template = ChatPromptTemplate.from_messages([
|
||||
("system", "You are a helpful AI bot. Your name is {name}."),
|
||||
("human", "Hello, how are you doing?"),
|
||||
("assistant", "I'm doing well, thanks!"),
|
||||
("ai", "I'm doing well, thanks!"),
|
||||
("human", "{user_input}"),
|
||||
])
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user