微信扫码
与创始人交个朋友
我要投稿
reader = SimpleDirectoryReader(input_files=['dense_x_retrieval.pdf'])
documents_userA = reader.load_data()
reader = SimpleDirectoryReader(input_files=['llm_compiler.pdf'])
documents_userB = reader.load_data()
index = VectorStoreIndex.from_documents(documents=[])
摄入管道:
pipeline = IngestionPipeline(transformations=[SentenceSplitter(chunk_size=512, chunk_overlap=20),])
for document in documents_userA:
document.metadata['user'] ='userA'
nodes = pipeline.run(documents=documents_userA)
index.insert_nodes(nodes)
for document in documents_userB:
document.metadata['user'] ='userB'
nodes = pipeline.run(documents=documents_userB)
index.insert_nodes(nodes)
# 对于user A
index.as_query_engine( =
filters=MetadataFilters(
filters=[
ExactMatchFilter(
key="user",
"userA", =
)
]
),
similarity_top_k=3
)
# 对于userB
userB_query_engine = index.as_query_engine(
filters=MetadataFilters(
filters=[
ExactMatchFilter(
key="user",
value="userB",
)
]
),
similarity_top_k=3
)
# UserA拥有Dense X Retrieval论文,应该能够回答以下问题。response = userA_query_engine.query("what are propositions mentioned in the paper?")
# userB 拥有LLMCompiler论文response = userB_query_engine.query("what are steps involved in LLM Compiler?")
LLMCompiler 由三个关键组件组成:一个LLM规划器、一个任务获取单元和一个执行器。LLM规划器通过定义基于用户输入的不同函数调用及其依赖关系来确定执行流程。
任务获取单元在用前一个任务的实际输出替换变量后,调度可以并行执行的函数调用。最后,执行器使用相关工具执行调度的函数调用任务。这些组件协同工作,优化了LLM的并行函数调用性能。
# 这不应该被回答,因为userA没有关于LLMCompiler的信息
response = userA_query_engine.query("what are steps involved in LLMCompiler?")
LLM:对不起,但我在给定的上下文中找不到有关LLMCompiler涉及的步骤的任何信息。
正如所演示的,如果 userA 查询 userB 索引的文档,系统不会从该文档检索到任何答案。
一键整合包
53AI,企业落地应用大模型首选服务商
产品:大模型应用平台+智能体定制开发+落地咨询服务
承诺:先做场景POC验证,看到效果再签署服务协议。零风险落地应用大模型,已交付160+中大型企业
2024-11-22
RAG技术在实际应用中的挑战与解决方案
2024-11-22
从普通RAG到RAPTOR,10个最新的RAG框架
2024-11-22
如何使用 RAG 提高 LLM 成绩
2024-11-21
提升RAG性能的全攻略:优化检索增强生成系统的策略大揭秘 | 深度好文
2024-11-20
FastGraphRAG 如何做到高达 20%优化检索增强生成(RAG)性能优化
2024-11-20
为裸奔的大模型穿上"防护服":企业AI安全护栏设计指南
2024-11-20
RAG-Fusion技术在产品咨询中的实践与分析
2024-11-19
构建高性能RAG:文本分割核心技术详解
2024-07-18
2024-05-05
2024-07-09
2024-07-09
2024-05-19
2024-06-20
2024-07-07
2024-07-07
2024-07-08
2024-07-09
2024-11-06
2024-11-06
2024-11-05
2024-11-04
2024-10-27
2024-10-25
2024-10-21
2024-10-21