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}")]) | 分类 | programming |
| 发布日期 | 2026-05-20 |
[变量] 替换为你自己的内容