LangChain PromptTemplate 管理和复用提示词模板。
from langchain.prompts import PromptTemplate
template = PromptTemplate.from_template("请用{style}风格写文案")
prompt = template.format(style="幽默")from langchain.prompts import ChatPromptTemplate
template = ChatPromptTemplate.from_messages([("system","你是{role}"),("user","{question}")])
评论区