GPT4All
GitHub:nomic-ai/gpt4all 一个开源聊天机器人的生态系统,这些机器人是在包括代码、故事和对话在内的大量干净助手数据上训练的。
本示例介绍了如何使用LangChain与GPT4All
模型进行交互。
%pip install --upgrade --quiet langchain-community gpt4all
导入 GPT4All
from langchain_community.llms import GPT4All
from langchain_core.prompts import PromptTemplate
API Reference:GPT4All | PromptTemplate
设置问题以传递给LLM
template = """Question: {question}
Answer: Let's think step by step."""
prompt = PromptTemplate.from_template(template)
指定模型
要在本地运行,请下载一个兼容的ggml格式模型。
gpt4all页面有一个有用的Model Explorer
部分:
- 选择一个感兴趣的模型
- 使用UI下载并将
.bin
文件移动到local_path
(如下所示)
欲了解更多信息,请访问 https://github.com/nomic-ai/gpt4all。
此集成尚不支持通过.stream()
方法进行分块流式传输。以下示例使用了一个带有streaming=True
的回调处理程序:
local_path = (
"./models/Meta-Llama-3-8B-Instruct.Q4_0.gguf" # replace with your local file path
)
from langchain_core.callbacks import BaseCallbackHandler
count = 0
class MyCustomHandler(BaseCallbackHandler):
def on_llm_new_token(self, token: str, **kwargs) -> None:
global count
if count < 10:
print(f"Token: {token}")
count += 1
# Verbose is required to pass to the callback manager
llm = GPT4All(model=local_path, callbacks=[MyCustomHandler()], streaming=True)
# If you want to use a custom model add the backend parameter
# Check https://docs.gpt4all.io/gpt4all_python.html for supported backends
# llm = GPT4All(model=local_path, backend="gptj", callbacks=callbacks, streaming=True)
chain = prompt | llm
question = "What NFL team won the Super Bowl in the year Justin Bieber was born?"
# Streamed tokens will be logged/aggregated via the passed callback
res = chain.invoke({"question": question})
API Reference:BaseCallbackHandler
Token: Justin
Token: Bieber
Token: was
Token: born
Token: on
Token: March
Token:
Token: 1
Token: ,
Token:
相关
- LLM 概念指南
- LLM how-to guides