欢迎回来

登录 EAKE AI,继续您的智能之旅

忘记密码?
还没有账号?立即注册
📁 all
📅 2026-06-01

LangChain 提示词模板系统

all

提示词模板

<h2>一、LangChain 提示词模板系统</h2><p>LangChain PromptTemplate 管理和复用提示词模板。</p><h3>1. 基础模板</h3><pre><code>from langchain.prompts import PromptTemplate template = PromptTemplate.from_template("请用{style}风格写文案") prompt = template.format(style="幽默")</code></pre><h2>二、Chat 模板</h2><pre><code>from langchain.prompts import ChatPromptTemplate template = ChatPromptTemplate.from_messages([("system","你是{role}"),("user","{question}")])</code></pre>

使用信息

分类all
发布日期2026-06-01

使用技巧

  • [变量] 替换为你自己的内容
  • 根据需求调整语气和风格描述
  • 可以多次迭代,让 AI 优化输出
  • 搭配不同模型可能产生不同效果