{"id":13645309,"url":"https://github.com/morsoli/llm-books","last_synced_at":"2025-05-15T11:08:38.440Z","repository":{"id":174615812,"uuid":"652484969","full_name":"morsoli/llm-books","owner":"morsoli","description":"利用LLM构建应用实践笔记","archived":false,"fork":false,"pushed_at":"2024-11-29T10:00:06.000Z","size":6356,"stargazers_count":700,"open_issues_count":6,"forks_count":47,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-14T19:58:58.130Z","etag":null,"topics":["chatgpt","chatgpt-api","langchain","llm","llmops","openai"],"latest_commit_sha":null,"homepage":"https://aitutor.liduos.com/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/morsoli.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-12T07:04:32.000Z","updated_at":"2025-04-11T08:54:35.000Z","dependencies_parsed_at":"2024-12-13T18:08:36.723Z","dependency_job_id":"d1eda54b-35d5-4a07-8c47-0e958abf0a43","html_url":"https://github.com/morsoli/llm-books","commit_stats":{"total_commits":54,"total_committers":2,"mean_commits":27.0,"dds":0.07407407407407407,"last_synced_commit":"477500edf68de1466d5a22efa6b1f29549ae5825"},"previous_names":["morsoli/llm-books"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morsoli%2Fllm-books","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morsoli%2Fllm-books/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morsoli%2Fllm-books/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morsoli%2Fllm-books/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/morsoli","download_url":"https://codeload.github.com/morsoli/llm-books/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254328385,"owners_count":22052632,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chatgpt","chatgpt-api","langchain","llm","llmops","openai"],"created_at":"2024-08-02T01:02:33.325Z","updated_at":"2025-05-15T11:08:38.417Z","avatar_url":"https://github.com/morsoli.png","language":"Python","funding_links":[],"categories":["Langchain","Python"],"sub_categories":[],"readme":"\u003e 欢迎 star🌟 ，持续关注《LLM 应用开发实践笔记》\n\n我的新书[《LangChain编程从入门到实践》](https://u.jd.com/V8pkqFY) 已经开售！推荐正在学习AI应用开发的朋友购买阅读！\n\n[![LangChain编程从入门到实践](./LLMProjects/images/langchain-book.jpg \"LangChain编程从入门到实践\")](https://u.jd.com/V8pkqFY)\n\n‼️‼️重要更新\n新增**LLM 应用评估与测试**、**RAG专题**、**国内模型厂商API解读** 3个章节\n\n\n## 本地阅读\n### 构建gitbook镜像(可选)\n下载本仓库后，执行`docker build . -t \u003cimage:tag\u003e`构建自定义镜像，也可以直接使用我构建好的镜像`morso1/gitbook-server:3.2.3`\n\n### 启动gitbook服务\n```bash\ncd llm-book\n\ndocker run --rm -v \"$PWD/LLMProjects:/gitbook\" -p 4000:4000 morso1/gitbook-server:3.2.3 gitbook serve\n```\n本地打开4000端口开始阅读\n\n## 目录大纲\n\n* [前言](README.html)\n* 大语言模型概述\n    * [大语言模型概况](https://aitutor.liduos.com/01-llm/01-1.html)\n    * [你好, ChatGPT](https://aitutor.liduos.com/01-llm/01-2.html)\n    * [OpenAI 文档解读](https://aitutor.liduos.com/01-llm/01-3.html)\n    * [动手实现聊天机器人](https://aitutor.liduos.com/01-llm/01-4.html)\n    * [基于 OpenAI API 搭建一个端到端问答系统](https://aitutor.liduos.com/01-llm/01-5.html)\n    * [LLM 安全专题](https://aitutor.liduos.com/01-llm/01-6.html)\n* LangChain入门\n    * [LangChain介绍](https://aitutor.liduos.com/02-langchain/02-1.html)\n\t* [LangChain模块学习](https://aitutor.liduos.com/02-langchain/02-2.html)\n    * [LangChain之Chains模块](https://aitutor.liduos.com/02-langchain/02-2-1.html)\n    * [LangChain之Agents模块](https://aitutor.liduos.com/02-langchain/02-2-2.html)\n    * [LangChain之Callback模块](https://aitutor.liduos.com/02-langchain/02-2-3.html)\n    * [Embedding嵌入](https://aitutor.liduos.com/02-langchain/02-3.html)\n    * [动手实现文档问答机器人](https://aitutor.liduos.com/02-langchain/02-4.html)\n* LlamaIndex 概述\n    * [LlamaIndex介绍](https://aitutor.liduos.com/03-llamaIndex/03-1.html)\n    * [LlamaIndex索引](https://aitutor.liduos.com/03-llamaIndex/03-2.html)\n    * [动手实现企业知识库](https://aitutor.liduos.com/03-llamaIndex/03-3.html)\n* HuggingGPT 实现\n    * [HuggingFace 介绍](https://aitutor.liduos.com/04-huggingface/04-1.html)\n    * [transformers 库基础组件](https://aitutor.liduos.com/04-huggingface/04-2.html)\n    * [多模态任务设计](https://aitutor.liduos.com/04-huggingface/04-3.html)\n    * [动手实现 HuggingGPT](https://aitutor.liduos.com/04-huggingface/04-4.html)\n* LLMOps 专题\n    * [LLMOps 介绍](https://aitutor.liduos.com/06-llmops/06-1.html)\n    * [Model 模型层](https://aitutor.liduos.com/06-llmops/06-2.html)\n    * [Prompt 提示层](https://aitutor.liduos.com/06-llmops/06-3.html)\n    * [狭义LLMOps](https://aitutor.liduos.com/06-llmops/06-4.html)\n* Agent 专题\n    * [Agent 介绍](https://aitutor.liduos.com/07-agents/07-1.html)\n    * [Agent 项目跟踪](https://aitutor.liduos.com/07-agents/07-2.html)\n    * [Multi-Agent 框架](https://aitutor.liduos.com/07-agents/07-3.html)\n* RAG专题\n    * [数据索引环节](https://aitutor.liduos.com/08-rag/08-1.html)\n    * [检索环节](https://aitutor.liduos.com/08-rag/08-2.html)\n    * [生成环节](https://aitutor.liduos.com/08-rag/08-3.html)\n* LLM 应用评估与测试\n    * [如何评估一个大语言模型](https://aitutor.liduos.com/09-llm-evelation-test/09-1.html)\n    * [基于大模型的Agent进行测试评估](https://aitutor.liduos.com/09-llm-evelation-test/09-2.html)\n    * [RAG系统效果评估](https://aitutor.liduos.com/09-llm-evelation-test/09-3.html)\n* 国内模型厂商API解读\n    * [六家大模型能力比较](https://aitutor.liduos.com/10-china-llm/10-01.html)\n    * [MiniMax大模型开发](https://aitutor.liduos.com/10-china-llm/10-02.html)\n    * [智谱AI大模型开发](https://aitutor.liduos.com/10-china-llm/10-03.html)\n    * [MoonShot大模型开发](https://aitutor.liduos.com/10-china-llm/10-04.html)\n- 基于大型语言模型的生成式AI\n  * [课程介绍](https://aitutor.liduos.com/05-generative-ai-with-llms/05-1.html)\n\n* 参考资料\n    * [A16Z推荐的AI学习清单](https://aitutor.liduos.com/ref/a16z.html)\n    * [Prompt专题](https://aitutor.liduos.com/ref/prompt.html)\n    * [一些课程资料汇总](https://aitutor.liduos.com/ref/ref.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorsoli%2Fllm-books","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmorsoli%2Fllm-books","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorsoli%2Fllm-books/lists"}