要说最近RAG方面火热的项目当属kotaemon,短时间暴涨8k star
kotaemon的亮点是可定制化RAG UI,核心技术点是混合索引(Vector、Keyword、GraphRAG)、复杂推理Agent(ReAct、ReWOO、MemoryGIST 和 GraphReader)、多模态。
混合索引(GraphRAG)
混合索引主要是指:全文和矢量融合,这里还有一个选型就是集成了RAG的新范式:GraphRAG
看代码直接用的微软GraphRAG
检索后重排采用LLMReranker
RERANK_PROMPT_TEMPLATE = """Given the following question and context,``return YES if the context is relevant to the question and NO if it isn't.`` ``> Question: {question}``> Context:``>>>``{context}``>>>``> Relevant (YES / NO):"""
复杂推理Agent
推理目前主要实现了react与rewoo,tools包括google搜索工具、llm工具、wikipedia工具,可以自定义扩展。
react还是经典的Thought、Action、Action Input、Observation模式
zero_shot_react_prompt = PromptTemplate(` `template="""Answer the following questions as best you can. Give answer in {lang}. You have access to the following tools:``{tool_description}``Use the following format:`` ``Question: the input question you must answer``Thought: you should always think about what to do`` ``Action: the action to take, should be one of [{tool_names}]`` ``Action Input: the input to the action, should be different from the action input of the same action in previous steps.`` ``Observation: the result of the action`` ``... (this Thought/Action/Action Input/Observation can repeat N times)``#Thought: I now know the final answer``Final Answer: the final answer to the original input question`` ``Begin! After each Action Input.`` ``Question: {instruction}``Thought:{agent_scratchpad}` `"""``)
rewoo(Reasoning WithOut Observation),该范式将推理过程与外部观察分离
planner的prompt模版
from kotaemon.llms import PromptTemplate`` ``zero_shot_planner_prompt = PromptTemplate(` `template="""You are an AI agent who makes step-by-step plans to solve a problem under the help of external tools.``For each step, make one plan followed by one tool-call, which will be executed later to retrieve evidence for that step.``You should store each evidence into a distinct variable #E1, #E2, #E3 ... that can be referred to in later tool-call inputs.`` ``##Available Tools##``{tool_description}`` ``##Output Format (Replace '<...>')##``#Plan1: <describe your plan here>``#E1: <toolname>[<input here>] (eg. Search[What is Python])``#Plan2: <describe next plan>``#E2: <toolname>[<input here, you can use #E1 to represent its expected output>]``And so on...`` ``##Your Task##``{task}`` ``##Now Begin##``"""``)
solver的prompt模版
zero_shot_solver_prompt = PromptTemplate(` `template="""You are an AI agent who solves a problem with my assistance. I will provide step-by-step plans(#Plan) and evidences(#E) that could be helpful.``Your task is to briefly summarize each step, then make a short final conclusion for your task. Give answer in {lang}.`` ``##My Plans and Evidences##``{plan_evidence}`` ``##Example Output##``First, I <did something> , and I think <...>; Second, I <...>, and I think <...>; ....``So, <your conclusion>.`` ``##Your Task##``{task}`` ``##Now Begin##``"""``)``
多模态
多模态体现在丰富的loader上面,多达十几种比如:html_loader.py、excel_loader.py、unstructured_loader.py等,可以借鉴用于其它场景哦
多模态测试,AdobeReader
https://github.com/Cinnamon/kotaemon
如何学习大模型 AI ?
由于新岗位的生产效率,要优于被取代岗位的生产效率,所以实际上整个社会的生产效率是提升的。
但是具体到个人,只能说是:
“最先掌握AI的人,将会比较晚掌握AI的人有竞争优势”。
这句话,放在计算机、互联网、移动互联网的开局时期,都是一样的道理。
我在一线互联网企业工作十余年里,指导过不少同行后辈。帮助很多人得到了学习和成长。
我意识到有很多经验和知识值得分享给大家,也可以通过我们的能力和经验解答大家在人工智能学习中的很多困惑,所以在工作繁忙的情况下还是坚持各种整理和分享。但苦于知识传播途径有限,很多互联网行业朋友无法获得正确的资料得到学习提升,故此将并将重要的AI大模型资料包括AI大模型入门学习思维导图、精品AI大模型学习书籍手册、视频教程、实战学习等录播视频免费分享出来。
第一阶段(10天):初阶应用
该阶段让大家对大模型 AI有一个最前沿的认识,对大模型 AI 的理解超过 95% 的人,可以在相关讨论时发表高级、不跟风、又接地气的见解,别人只会和 AI 聊天,而你能调教 AI,并能用代码将大模型和业务衔接。
- 大模型 AI 能干什么?
- 大模型是怎样获得「智能」的?
- 用好 AI 的核心心法
- 大模型应用业务架构
- 大模型应用技术架构
- 代码示例:向 GPT-3.5 灌入新知识
- 提示工程的意义和核心思想
- Prompt 典型构成
- 指令调优方法论
- 思维链和思维树
- Prompt 攻击和防范
- …
第二阶段(30天):高阶应用
该阶段我们正式进入大模型 AI 进阶实战学习,学会构造私有知识库,扩展 AI 的能力。快速开发一个完整的基于 agent 对话机器人。掌握功能最强的大模型开发框架,抓住最新的技术进展,适合 Python 和 JavaScript 程序员。
- 为什么要做 RAG
- 搭建一个简单的 ChatPDF
- 检索的基础概念
- 什么是向量表示(Embeddings)
- 向量数据库与向量检索
- 基于向量检索的 RAG
- 搭建 RAG 系统的扩展知识
- 混合检索与 RAG-Fusion 简介
- 向量模型本地部署
- …
第三阶段(30天):模型训练
恭喜你,如果学到这里,你基本可以找到一份大模型 AI相关的工作,自己也能训练 GPT 了!通过微调,训练自己的垂直大模型,能独立训练开源多模态大模型,掌握更多技术方案。
到此为止,大概2个月的时间。你已经成为了一名“AI小子”。那么你还想往下探索吗?
- 为什么要做 RAG
- 什么是模型
- 什么是模型训练
- 求解器 & 损失函数简介
- 小实验2:手写一个简单的神经网络并训练它
- 什么是训练/预训练/微调/轻量化微调
- Transformer结构简介
- 轻量化微调
- 实验数据集的构建
- …
第四阶段(20天):商业闭环
对全球大模型从性能、吞吐量、成本等方面有一定的认知,可以在云端和本地等多种环境下部署大模型,找到适合自己的项目/创业方向,做一名被 AI 武装的产品经理。
- 硬件选型
- 带你了解全球大模型
- 使用国产大模型服务
- 搭建 OpenAI 代理
- 热身:基于阿里云 PAI 部署 Stable Diffusion
- 在本地计算机运行大模型
- 大模型的私有化部署
- 基于 vLLM 部署大模型
- 案例:如何优雅地在阿里云私有部署开源大模型
- 部署一套开源 LLM 项目
- 内容安全
- 互联网信息服务算法备案
- …
学习是一个过程,只要学习就会有挑战。天道酬勤,你越努力,就会成为越优秀的自己。
如果你能在15天内完成所有的任务,那你堪称天才。然而,如果你能完成 60-70% 的内容,你就已经开始具备成为一名大模型 AI 的正确特征了。