Langchain – 仅依赖上下文

huangapple go评论43阅读模式
英文:

Langchain - rely ONLY on the context

问题

My goal is to make a ChatBot able to:

  1. have memory
  2. take as input some documents
  3. rely ONLY on the documents given and say "I don't know" when the information is not in the input documents.

I found this tutorial, super useful: https://github.com/jerryjliu/llama_index/blob/main/examples/chatbot/Chatbot_SEC.ipynb

It works perfectly, BUT I don't understand how to apply point 3 (rely only on input documents).

Do you think that with LangChain is easier? Thanks a lot and have a nice day! Carlo

Noticing that

create_llama_chat_agent

relies on langchain/agents/conversational/prompt.py file to build the prompt, I manipulated that PREFIX text to say something like "please rely only on your context" but it is not effective.

英文:

My goal is to make a ChatBot able to:

  1. have memory
  2. take as input some documents
  3. rely ONLY on the documents given and say "I don't know" when the information is not in the input documents.

I found this tutorial, super useful: https://github.com/jerryjliu/llama_index/blob/main/examples/chatbot/Chatbot_SEC.ipynb

It works perfectly, BUT I don't understand how to apply point 3 (rely only on input documents).

Do you think that with LangChain is easier? Thanks a lot and have a nice day! Carlo

Noticing that

create_llama_chat_agent

relies on langchain/agents/conversational/prompt.py file to build the prompt, I manipulated that PREFIX text to say something like "please rely only on your context" but it is not effective.

答案1

得分: 1

"After a lot of tests, it was easier than expected.
Using this: https://blog.langchain.dev/tutorial-chatgpt-over-your-data/
I simply modified the QA_PROMPT saying to answer questions only when related to the context.
It is working!
Hope this is useful for you guys, have a nice day! Carlo"

英文:

After a lot of tests, it was easier than expected.
Using this: https://blog.langchain.dev/tutorial-chatgpt-over-your-data/

I simply modified the QA_PROMPT saying to answer questions only when related to the context.

It is working !

Hope this is useful for you guys, have a nice day! Carlo

huangapple
  • 本文由 发表于 2023年5月7日 20:29:45
  • 转载请务必保留本文链接:https://go.coder-hub.com/76193936.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定