在这篇文章中,我将解释如何使用 Llama2 模型构建一个聊天机器人来智能查询 Excel 数据。
Python (≥ 3.8)
库:langchain、pandas、非结构化、Chroma
%pip install -q unstructured langchain %pip install -q "unstructured[all-docs]"
import pandas as pd excel_path = "Book2.xlsx" if excel_path: df = pd.read_excel(excel_path) data = df.to_string(index=False) else: print("Upload an Excel file")
大型文本数据被分割成更小的、重叠的块,以进行有效的嵌入和查询。这些块存储在 Chroma 矢量数据库中。
from langchain_text_splitters import RecursiveCharacterTextSplitter from langchain_community.embeddings import OllamaEmbeddings from langchain_community.vectorstores import Chroma text_splitter = RecursiveCharacterTextSplitter(chunk_size=7500, chunk_overlap=100) chunks = text_splitter.split_text(data) embedding_model = OllamaEmbeddings(model="nomic-embed-text", show_progress=False) vector_db = Chroma.from_texts( texts=chunks, embedding=embedding_model, collection_name="local-rag" )
我们使用 ChatOllama 在本地加载 Llama2 模型。
from langchain_community.chat_models import ChatOllama local_model = "llama2" llm = ChatOllama(model=local_model)
聊天机器人将根据 Excel 文件中的特定列名称进行响应。我们创建一个提示模板来指导模型
from langchain.prompts import PromptTemplate QUERY_PROMPT = PromptTemplate( input_variables=["question"], template="""You are an AI assistant. Answer the user's questions based on the column names: Id, order_id, name, sales, refund, and status. Original question: {question}""" )
我们配置一个检索器从向量数据库中获取相关块,Llama2 模型将使用该数据块来回答问题。
from langchain.retrievers.multi_query import MultiQueryRetriever retriever = MultiQueryRetriever.from_llm( vector_db.as_retriever(), llm, prompt=QUERY_PROMPT )
响应链集成:
from langchain.prompts import ChatPromptTemplate from langchain_core.runnables import RunnablePassthrough from langchain_core.output_parsers import StrOutputParser template = """Answer the question based ONLY on the following context: {context} Question: {question} """ prompt = ChatPromptTemplate.from_template(template) chain = ( {"context": retriever, "question": RunnablePassthrough()} | prompt | llm | StrOutputParser() )
现在我们准备好提问了!以下是我们如何调用链来获取响应:
raw_result = chain.invoke("How many rows are there?") final_result = f"{raw_result}\n\nIf you have more questions, feel free to ask!" print(final_result)
当我在示例 Excel 文件上运行上述代码时,我得到的结果如下:
Based on the provided context, there are 10 rows in the table. If you have more questions, feel free to ask!
这种方法利用嵌入和 Llama2 模型的强大功能,为 Excel 数据创建智能、交互式聊天机器人。通过一些调整,您可以扩展它以处理其他类型的文档或将其集成到成熟的应用程序中!
介绍 BChat Excel:用于 Excel 文件交互的对话式 AI 驱动工具
以上是使用 LlamaChat 和 Excel 构建一个简单的聊天机器人]的详细内容。更多信息请关注PHP中文网其他相关文章!