2026年7月2日 周四晚上19:30,报名腾讯会议了解“如何构建自进化的动态知识库(Brain)”(限30人)
免费POC, 零成本试错
FDE知识库

FDE知识库

学习大模型的前沿技术与行业落地应用


收藏

【AI+搜索】开源AI搜索项目学习:400行核心代码完成整个流程

发布日期:2024-07-26 07:31:54 浏览次数: 3352

0. 背景

AI大模型爆发已经一两年的时间了,目前为止,相对成熟的应用领域是在AI+搜索领域,像 Kimi Chat、百度App、New Bing等,都逐步拥有了此功能,用户只需输入想知道的事情,这些软件会自动搜索网络内容,然后根据网络内容总结出最终的答案,大大减轻了用户的检索和分析的负担。

前面,我也分析过这类AI检索功能的背后原理,同时也从0实现了一个AI搜索工具,感兴趣的可以去看下这篇文章:【AI大模型应用开发】【综合实战】AI+搜索,手把手带你实现属于你的AI搜索引擎(附完整代码)

但是,自己实现的,终究只是个Demo,只是原理通了,但效果如何?可能用起来并不好。毕竟,AI大模型应用的特点就是:上手简单,落地难。要想实现效果好的产品,还需要大量的细节处理和打磨。

最近,我发现了一个开源的AI搜索工具,叫 Lepton Search,GitHub Star数7.5K,还挺受欢迎的。本文我们来看下它的具体实现,看下与我之前的思路有没有区别,有没有其它值得借鉴的地方。

1. Lepton Search 工具介绍

在线体验地址:https://search.lepton.run/ GitHub 源码地址:https://search.lepton.run/

界面还是挺简洁的。

搜索后答案界面如下:

它会列出最终答案、引用的链接来源,以及联想一些用户可能会问的相关问题。

2. 实现原理

我们这里不讨论其界面前端的实现,只看后端的实现原理。其后端的实现核心代码大概有400多行,在 https://github.com/leptonai/search_with_lepton/blob/main/search_with_lepton.py 文件中。

2.1 总结

先说结论,其实现原理与我之前的文章写的实现原理差别不大,即首先利用检索接口检索出相关的网页和文本内容,然后以这些文本内容作为RAG的参考文本,与原始问题一同给到大模型,大模型根据参考文本给出最终答案。

说白了,就是一个RAG的应用,只是数据源来源不同而已。

2.2 重点代码分析

2.2.1 检索数据源

该项目可以使用不同的检索数据源,例如Google,Bing等,有现成的代码可以用。当然,要自己去申请相应接口的Key。

具体可直接用的不同检索API的函数定义如下:

def search_with_bing(query: str, subscription_key: str):

def search_with_google(query: str, subscription_key: str, cx: str):

def search_with_serper(query: str, subscription_key: str):

def search_with_searchapi(query: str, subscription_key: str):

2.2.2 检索入口函数

query_function 为该项目的检索入口函数。主要代码如下:

 def query_function(
    self,
    query: str,
    search_uuid: str,
    generate_related_questions: Optional[bool] = True,
)->StreamingResponse:

if self.backend =="LEPTON":
# delegate to the lepton search api.
        result = self.leptonsearch_client.query(
            query=query,
            search_uuid=search_uuid,
            generate_related_questions=generate_related_questions,
)
returnStreamingResponse(content=result, media_type="text/html")

# First, do a search query.
    query = query or _default_query
......
    contexts = self.search_function(query)

    system_prompt = _rag_query_text.format(
        context="\n\n".join(
[f"[[citation:{i+1}]] {c['snippet']}"for i, c inenumerate(contexts)]
)
)
try:
        client = self.local_client()
        llm_response = client.chat.completions.create(
            model=self.model,
            messages=[
{"role":"system","content": system_prompt},
{"role":"user","content": query},
],
            max_tokens=1024,
            stop=stop_words,
            stream=True,
            temperature=0.9,
)
if self.should_do_related_questions and generate_related_questions:
# While the answer is being generated, we can start generating
# related questions as a future.
            related_questions_future = self.executor.submit(
                self.get_related_questions, query, contexts
)
else:
            related_questions_future =None
exceptExceptionas e:
        ......

以上代码主要做了以下几件事,也是AI搜索引擎的常规步骤:

(1)contexts = self.search_function(query) 检索相关文本 

(2)system_prompt  组装RAG Prompt,Prompt模板如下:

_rag_query_text = """
You are a large language AI assistant built by Lepton AI. You are given a user question, and please write clean, concise and accurate answer to the question. You will be given a set of related contexts to the question, each starting with a reference number like [[citation:x]], where x is a number. Please use the context and cite the context at the end of each sentence if applicable.

Your answer must be correct, accurate and written by an expert using an unbiased and professional tone. Please limit to 1024 tokens. Do not give any information that is not related to the question, and do not repeat. Say "information is missing on" followed by the related topic, if the given context do not provide sufficient information.

Please cite the contexts with the reference numbers, in the format [citation:x]. If a sentence comes from multiple contexts, please list all applicable citations, like [citation:3][citation:5]. Other than code and specific names and citations, your answer must be written in the same language as the question.

Here are the set of contexts:

{context}

Remember, don't blindly repeat the contexts verbatim. And here is the user question:
"""

(3)client.chat.completions.create 调用大模型获取答案

以上3步为基本步骤。该项目还增加了额外的步骤,获取相关的问题。

2.2.3 获取相关问题

获取相关问题展示给用户的能力在某些情况下也是有用和有意义的,给用户提示,在用户不知道该如何问的时候有灵感。

其实现方法如下:

def get_related_questions(self, query, contexts):
......

try:
        response = self.local_client().chat.completions.create(
            model=self.model,
            messages=[
{
"role":"system",
"content": _more_questions_prompt.format(
                        context="\n\n".join([c["snippet"]for c in contexts])
),
},
{
"role":"user",
"content": query,
},
],
            tools=[{
"type":"function",
"function": tool.get_tools_spec(ask_related_questions),
}],
            max_tokens=512,
)
        ......

具体实现原理也是利用大模型,根据原始问题和回复的问题答案来生成几个相关问题。通过其Prompt可以很容易看出其实现方式:

_more_questions_prompt = """
You are a helpful assistant that helps the user to ask related questions, based on user's original question and the related contexts. Please identify worthwhile topics that can be follow-ups, and write questions no longer than 20 words each. Please make sure that specifics, like events, names, locations, are included in follow up questions so they can be asked standalone. For example, if the original question asks about "the Manhattan project", in the follow up question, do not just say "the project", but use the full name "the Manhattan project". Your related questions must be in the same language as the original question.

Here are the contexts of the question:

{context}

Remember, based on the original question and related contexts, suggest three such further questions. Do NOT repeat the original question. Each related question should be no longer than 20 words. Here is the original question:
"""


53AI,企业落地大模型首选服务商

产品:场景落地咨询+大模型应用平台+行业解决方案

承诺:免费POC验证,效果达标后再合作。零风险落地应用大模型,已交付160+中大型企业

联系我们

售前咨询
186 6662 7370
预约演示
185 8882 0121

微信扫码

添加专属顾问

回到顶部

加载中...

扫码咨询

扫码登录
登录即表示您同意《53AI网站服务协议》
服务协议

欢迎您使用【53AI 官方网站】(以下简称“本网站”或“我们”)。本《会员服务协议》(以下简称“本协议”)是您(以下简称“会员”或“用户”)与【深圳市博思协创网络科技有限公司】之间关于注册、登录及使用本网站会员服务所订立的法律协议。

在您注册或登录前,请务必审慎阅读、充分理解各条款内容,特别是免除或限制责任的条款、知识产权条款、争议解决条款等。此类条款将以加粗形式提示您注意。 当您通过微信公众号授权、手机验证码验证或其他方式成功登录本网站时,即视为您已完全理解并同意接受本协议的全部内容。

一、 定义

本网站:指由【深圳市博思协创网络科技有限公司】运营的,域名为【53ai.com】的网站及相关移动端页面。

会员服务:指本网站向注册会员提供的知识库文章查阅、内容检索及其他相关增值服务。

知识库内容:指本网站发布的包括但不限于文字、图表、数据、研究报告、行业分析等数字化内容资源。

二、 账号注册与登录

登录方式:本网站支持以下登录方式,您可根据实际情况选择:

微信公众号授权登录:您同意将您的微信OpenID信息授权给本网站,用于创建或关联会员账号。

手机验证码登录:您需提供真实有效的手机号码,并通过短信验证码完成身份验证与登录/注册。

账号安全:您的账号仅限您本人使用,禁止赠与、借用、租用、转让或售卖。因您保管不善导致的账号被盗、密码泄露等损失,由您自行承担。

实名认证:根据相关法律法规要求,我们可能要求您在特定功能下完成实名认证。如您拒绝提供,可能无法使用部分或全部服务。

未成年人保护:若您未满18周岁,请在法定监护人的陪同下阅读本协议,并在征得监护人同意后使用本服务。

三、 服务内容与规范

知识库查阅权限:会员登录后,有权按照其会员等级对应的权限范围,在线浏览、检索本网站知识库中的相关文章及内容。

服务变更:我们有权根据业务发展需要,调整、变更或终止部分服务内容,并将以网站公告、公众号消息等方式提前通知。

禁止行为:您在使用服务时不得实施以下行为:

利用技术手段批量爬取、下载、转存知识库内容;

将知识库内容用于商业目的或未经授权地向第三方传播;

干扰本网站正常运行或侵犯其他用户合法权益;

发布违法违规信息或从事违反公序良俗的活动。

四、 知识产权声明

权利归属:本网站知识库中的排版设计、软件代码等内容的知识产权均归【公司全称】或原权利人所有,受《中华人民共和国著作权法》等法律保护。

有限许可:本网站授予会员一项非独占、不可转让、不可转授权的普通许可,仅限于个人学习、研究之目的在线查阅知识库内容。

侵权追责:未经书面许可,任何单位或个人不得以任何形式复制、转载、摘编、镜像、汇编或以其他方式使用上述内容。一经发现,我们保留追究其法律责任的权利。

五、 个人信息保护

我们重视对您个人信息的保护。关于我们如何收集、使用、存储和保护您的个人信息,请单独阅读 《隐私政策》。

您通过微信公众号授权或手机号验证所提供的信息,我们将严格按照《个人信息保护法》的规定处理,仅用于身份识别、服务提供及安全验证等必要用途。

您可以随时通过网站设置或联系客服行使查阅、更正、删除个人信息及撤回授权同意的权利。

六、 免责声明

内容准确性:知识库内容仅供参考,不构成专业建议。我们不对其完整性、准确性、时效性作任何明示或暗示的保证,您应自行判断并承担使用风险。

不可抗力:因自然灾害、政策法规变化、网络故障、第三方平台接口异常(如微信接口维护、运营商短信通道故障)等不可抗力导致的服务中断或延迟,我们不承担违约责任。

第三方链接:本网站可能包含指向第三方网站的链接,该等网站的内容和服务不受我们控制,请您自行甄别风险。

七、 违约责任

如您违反本协议约定,我们有权视情节采取警告、限制功能、暂停服务、注销账号等措施,并保留要求赔偿损失的权利。

如因您的违约行为导致我们遭受行政处罚、第三方索赔或商誉损失,您应承担全部赔偿责任(包括但不限于罚款、赔偿金、律师费、公证费等)。

八、 法律适用与争议解决

本协议的订立、执行和解释均适用中华人民共和国大陆地区法律。

因本协议产生的或与本协议有关的任何争议,双方应友好协商解决;协商不成的,任何一方均可向【公司所在地】有管辖权的人民法院提起诉讼。

九、 其他

本协议构成双方就本服务达成的完整协议,取代此前任何口头或书面约定。

本协议任一条款被认定为无效或不可执行的,不影响其他条款的效力。

我们对本协议享有最终解释权,并在法律允许的范围内保留随时修改的权利。修改后的协议一经公布即生效,继续使用服务即视为同意修订内容。


已查阅