ChatGPT | 使用自己Prompt替换LangChain默认Prompt

某些场景会要求ChatGPT重复处理同一个操作,要么在问题里面加入Prompt,要么用自己Prompt替换LangChain默认Prompt。

直接看看前后对比结果

LangChain默认的Prompt

template="Use the following pieces of context to answer the users question. \nIf you don't know the answer, just say that you don't know, don't try to make up an answer.\n----------------\n{context}"

我自己Prompt替换了之后

template="Use the following pieces of context to answer the users question in Chinese.\n If you don't know the answer, just say that you don't know, don't try to make up an answer.\n There are multiple answers, provide each answer in Chinese,specify the source file for each answer.\n \n\n{context}

源代码如下:

python 复制代码
def getMyPrompt():
    '''自定义Prompt模板'''
    prompt_template = """Use the following pieces of context to answer the users question in Chinese.
    If you don't know the answer, just say that you don't know, don't try to make up an answer.
    There are multiple answers, provide each answer in Chinese,specify the source file for each answer.
    \n\n{context}\n\nQuestion: {question}\n\nAnswer in Chinese:"""
    
    MyPrompt = PromptTemplate(
        template=prompt_template, input_variables=["context","question"]#必须有上下文context和问题question
    )
    return MyPrompt

db_RTCS = Chroma(persist_directory="./RCTS/", embedding_function=embeddings)
print('----------------')
chain_type_kwargs = {"prompt": getMyPrompt()}#用自己的Prompt替换掉langchain默认的Prompt
qa_RTCS = RetrievalQA.from_chain_type(llm=openAiLLm,chain_type="stuff",
                                      retriever=db_RTCS.as_retriever(),
                                      chain_type_kwargs=chain_type_kwargs)

print(qa_RTCS)#查看自定义Prompt的结构体内容
相关推荐
精彩AI说13 分钟前
ChatGPT改标题总是太普通?提炼关键词、增强重点与减少重复的方法
chatgpt·ai写作·提示词·chatgpt教程·标题优化
LFly_ice18 分钟前
Langchain-05 消息
langchain
zzzll111120 分钟前
Skill 不只是 Prompt:从概念到实践
prompt
淼澄研学36 分钟前
大语言模型文本生成5大技术陷阱与LangChain RAG实操方案
人工智能·语言模型·langchain
Maiko Star2 小时前
[LangChain RAG] 05 LCEL 链与 Memory:从竖线组链到多轮对话
langchain
哒咩哒咩1292 小时前
Agent 智能体开发全攻略:从 ReAct 到企业级架构
python·langchain·fastapi
AI 编程助手GPT3 小时前
Bun 1.4 正式发布:从 Zig 改写为 Rust,内置浏览器、图片处理和并行测试
开发语言·人工智能·后端·ai·chatgpt
淼澄研学4 小时前
LangChain构建Prompt模板解决Python长尾报错实操
python·langchain·prompt
孤狼GPT4 小时前
Codex额度快用完时,要不要换Luna?什么任务适合降模型,什么任务绝对别降?
chatgpt·codex·luna·chatgpt plus·chatgpt pro·codex额度
顿哥GPT4 小时前
2026-08-28|ChatGPT Plus 与 Codex 实战:用 AI 编程为 Python 接口编写自动化测试的完整复盘
人工智能·chatgpt·重构