├── .gitignore ├── AI-shuziren ├── Dockerfile ├── README.md ├── redis.conf ├── server.py ├── start.sh ├── static │ └── index.html └── turnserver.conf ├── Chapter1 ├── 01 │ └── README.md ├── 02 │ └── README.md ├── 03 │ └── README.md ├── 04 │ └── README.md ├── 05 │ └── README.md ├── 06 │ └── README.md └── 07 │ └── README.md ├── Chapter2 ├── 01.md ├── 02.md ├── 03.md ├── 04.md ├── 05.md ├── 06openai.ipynb ├── 07通义千问.ipynb ├── readme.md └── test.py ├── Chapter3 ├── 01.md ├── 02.md ├── 03.md ├── 04.md ├── 04Prompt.ipynb ├── 05PromptDIY.ipynb ├── 06F-string-jinja2.ipynb ├── 07file-json.ipynb ├── 08.md ├── 08Select.ipynb ├── 09Select-MMR.ipynb ├── 10.md ├── 10LLMsChatModels.ipynb ├── 11.md ├── 11Stream.ipynb ├── 12TokenTrack.ipynb ├── 13.md ├── 13OutPutParsers.ipynb ├── prompt_with_output_parser.json ├── simple_prompts.json ├── simple_prompts.yaml └── test.py ├── Chapter4 ├── 01.md ├── 02.md ├── 03.md ├── 03Loader.ipynb ├── 04.md ├── 04docSplit.ipynb ├── 06.md ├── 06Lost-in-the-middle.ipynb ├── 07.md ├── 07Vector.ipynb ├── 08.md ├── 09.md ├── 09ChatDoc.ipynb ├── 10ChatDoc1.ipynb ├── cache │ ├── text-embedding-ada-0029361c23a-8011-5fad-ab2e-e0286bdd5d67 │ ├── text-embedding-ada-002b0c54c27-a009-50b4-9ccc-661d5478b195 │ ├── text-embedding-ada-002e94acbbe-7d17-5331-8310-4e37bdc56d31 │ └── text-embedding-ada-002fe598a14-c602-5a05-8f4c-fdbe948ac709 ├── example │ ├── fake.docx │ ├── fake.pdf │ └── fake.xlsx ├── letter.txt ├── loader.csv ├── loader.html ├── loader.md ├── loader.pdf ├── sum.md └── test.txt ├── Chapter5 ├── 01.md ├── 02.md ├── 03Chain.ipynb ├── 05RouterChain.ipynb ├── 08.md ├── 08ChainWiki.ipynb ├── 09.md ├── 09stuffChain-refineChain.ipynb ├── 10.md ├── 10MapReduce.ipynb ├── 11.md ├── 11Memory.ipynb ├── 12chainMemory.ipynb ├── 13.md ├── img │ └── map.png ├── letter.txt ├── loader.pdf └── test_faiss │ ├── index.faiss │ └── index.pkl ├── Chapter6 ├── 01.md ├── 02.md ├── 03.md ├── 03Agent.ipynb ├── 04.ipynb ├── 05.ipynb ├── 07agent-share-memory.ipynb ├── 08LangChain-Agents.ipynb ├── 09Tookit.ipynb ├── 10LCEL.ipynb ├── 11LCEL2.ipynb ├── 12LCEL-Chain-Prompt.ipynb ├── 13LCEL-Memory.ipynb ├── 14LCEL-Agent.ipynb ├── 15LocalModel.ipynb ├── Chinook.db └── test.py ├── Chapter7 ├── 01.ipynb ├── 02.ipynb ├── 03.ipynb ├── 04.ipynb └── 05.ipynb ├── Chapter8 ├── 01.ipynb ├── 02.ipynb ├── 031b2f83-5335-4d2f-9fa6-d66004059f8f.mp3 ├── 2aa46123-695e-41e3-9a53-48bbd0c710cf.mp3 ├── 334a4009-2357-4d42-a92c-70df5ac0e79a.mp3 ├── 4ad3bc58-adad-40ae-aa7e-dcfe40192c1b.mp3 ├── 711aef9f-9bf0-4c33-8b65-d95ad2f48029.mp3 ├── aabb47fc-5099-4ffe-8788-ba6daee3d36c.mp3 ├── baf7ffc2-d9ee-428d-9051-072e4cf57c09.mp3 ├── bot │ ├── Btools.py │ ├── Docker-compose.yml │ ├── Dockerfile │ ├── nohappy.mp3 │ ├── readme.md │ ├── requirements.txt │ ├── server.py │ ├── tele.py │ └── 算命先手出生年月.mp3 ├── c37ce35e-7127-420d-a27c-6687bb617ae7.mp3 ├── da7cf353-adaf-44b3-ae2e-2df1e09c94ae.mp3 ├── db9f61ef-a5c4-453c-8495-917c33196e08.mp3 ├── dc56bd7f-f52e-4cb8-a2e2-6e1d62499d17.mp3 ├── e527ec33-921c-40bb-8eae-b318bd881c9e.mp3 ├── local_qdrant │ ├── .lock │ ├── collection │ │ └── local_documents │ │ │ └── storage.sqlite │ └── meta.json └── sum.md ├── README.md ├── de058b03-9dda-49fd-a38f-026f22678916.mp3 ├── imgs ├── chat.png ├── langchain_track.png ├── langchain_track1.png └── tinywow_2024-05-16 21-17-24_56017848.gif └── requirement.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.env 2 | .ipynb_checkpoints 3 | Chapter8/bot/__pycache__/ 4 | -------------------------------------------------------------------------------- /AI-shuziren/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/AI-shuziren/Dockerfile -------------------------------------------------------------------------------- /AI-shuziren/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/AI-shuziren/README.md -------------------------------------------------------------------------------- /AI-shuziren/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/AI-shuziren/redis.conf -------------------------------------------------------------------------------- /AI-shuziren/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/AI-shuziren/server.py -------------------------------------------------------------------------------- /AI-shuziren/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/AI-shuziren/start.sh -------------------------------------------------------------------------------- /AI-shuziren/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/AI-shuziren/static/index.html -------------------------------------------------------------------------------- /AI-shuziren/turnserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/AI-shuziren/turnserver.conf -------------------------------------------------------------------------------- /Chapter1/01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter1/01/README.md -------------------------------------------------------------------------------- /Chapter1/02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter1/02/README.md -------------------------------------------------------------------------------- /Chapter1/03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter1/03/README.md -------------------------------------------------------------------------------- /Chapter1/04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter1/04/README.md -------------------------------------------------------------------------------- /Chapter1/05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter1/05/README.md -------------------------------------------------------------------------------- /Chapter1/06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter1/06/README.md -------------------------------------------------------------------------------- /Chapter1/07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter1/07/README.md -------------------------------------------------------------------------------- /Chapter2/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter2/01.md -------------------------------------------------------------------------------- /Chapter2/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter2/02.md -------------------------------------------------------------------------------- /Chapter2/03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter2/03.md -------------------------------------------------------------------------------- /Chapter2/04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter2/04.md -------------------------------------------------------------------------------- /Chapter2/05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter2/05.md -------------------------------------------------------------------------------- /Chapter2/06openai.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter2/06openai.ipynb -------------------------------------------------------------------------------- /Chapter2/07通义千问.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter2/07通义千问.ipynb -------------------------------------------------------------------------------- /Chapter2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter2/readme.md -------------------------------------------------------------------------------- /Chapter2/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter2/test.py -------------------------------------------------------------------------------- /Chapter3/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/01.md -------------------------------------------------------------------------------- /Chapter3/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/02.md -------------------------------------------------------------------------------- /Chapter3/03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/03.md -------------------------------------------------------------------------------- /Chapter3/04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/04.md -------------------------------------------------------------------------------- /Chapter3/04Prompt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/04Prompt.ipynb -------------------------------------------------------------------------------- /Chapter3/05PromptDIY.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/05PromptDIY.ipynb -------------------------------------------------------------------------------- /Chapter3/06F-string-jinja2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/06F-string-jinja2.ipynb -------------------------------------------------------------------------------- /Chapter3/07file-json.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/07file-json.ipynb -------------------------------------------------------------------------------- /Chapter3/08.md: -------------------------------------------------------------------------------- 1 | # 兼容窗口的示例选择器 2 | - 提示词->32k->128k(300页的书大小) -------------------------------------------------------------------------------- /Chapter3/08Select.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/08Select.ipynb -------------------------------------------------------------------------------- /Chapter3/09Select-MMR.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/09Select-MMR.ipynb -------------------------------------------------------------------------------- /Chapter3/10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/10.md -------------------------------------------------------------------------------- /Chapter3/10LLMsChatModels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/10LLMsChatModels.ipynb -------------------------------------------------------------------------------- /Chapter3/11.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/11Stream.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/11Stream.ipynb -------------------------------------------------------------------------------- /Chapter3/12TokenTrack.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/12TokenTrack.ipynb -------------------------------------------------------------------------------- /Chapter3/13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/13.md -------------------------------------------------------------------------------- /Chapter3/13OutPutParsers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/13OutPutParsers.ipynb -------------------------------------------------------------------------------- /Chapter3/prompt_with_output_parser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/prompt_with_output_parser.json -------------------------------------------------------------------------------- /Chapter3/simple_prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/simple_prompts.json -------------------------------------------------------------------------------- /Chapter3/simple_prompts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter3/simple_prompts.yaml -------------------------------------------------------------------------------- /Chapter3/test.py: -------------------------------------------------------------------------------- 1 | from langchain.llms import openai -------------------------------------------------------------------------------- /Chapter4/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/01.md -------------------------------------------------------------------------------- /Chapter4/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/02.md -------------------------------------------------------------------------------- /Chapter4/03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/03.md -------------------------------------------------------------------------------- /Chapter4/03Loader.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/03Loader.ipynb -------------------------------------------------------------------------------- /Chapter4/04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/04.md -------------------------------------------------------------------------------- /Chapter4/04docSplit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/04docSplit.ipynb -------------------------------------------------------------------------------- /Chapter4/06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/06.md -------------------------------------------------------------------------------- /Chapter4/06Lost-in-the-middle.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/06Lost-in-the-middle.ipynb -------------------------------------------------------------------------------- /Chapter4/07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/07.md -------------------------------------------------------------------------------- /Chapter4/07Vector.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/07Vector.ipynb -------------------------------------------------------------------------------- /Chapter4/08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/08.md -------------------------------------------------------------------------------- /Chapter4/09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/09.md -------------------------------------------------------------------------------- /Chapter4/09ChatDoc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/09ChatDoc.ipynb -------------------------------------------------------------------------------- /Chapter4/10ChatDoc1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/10ChatDoc1.ipynb -------------------------------------------------------------------------------- /Chapter4/cache/text-embedding-ada-0029361c23a-8011-5fad-ab2e-e0286bdd5d67: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/cache/text-embedding-ada-0029361c23a-8011-5fad-ab2e-e0286bdd5d67 -------------------------------------------------------------------------------- /Chapter4/cache/text-embedding-ada-002b0c54c27-a009-50b4-9ccc-661d5478b195: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/cache/text-embedding-ada-002b0c54c27-a009-50b4-9ccc-661d5478b195 -------------------------------------------------------------------------------- /Chapter4/cache/text-embedding-ada-002e94acbbe-7d17-5331-8310-4e37bdc56d31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/cache/text-embedding-ada-002e94acbbe-7d17-5331-8310-4e37bdc56d31 -------------------------------------------------------------------------------- /Chapter4/cache/text-embedding-ada-002fe598a14-c602-5a05-8f4c-fdbe948ac709: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/cache/text-embedding-ada-002fe598a14-c602-5a05-8f4c-fdbe948ac709 -------------------------------------------------------------------------------- /Chapter4/example/fake.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/example/fake.docx -------------------------------------------------------------------------------- /Chapter4/example/fake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/example/fake.pdf -------------------------------------------------------------------------------- /Chapter4/example/fake.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/example/fake.xlsx -------------------------------------------------------------------------------- /Chapter4/letter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/letter.txt -------------------------------------------------------------------------------- /Chapter4/loader.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/loader.csv -------------------------------------------------------------------------------- /Chapter4/loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/loader.html -------------------------------------------------------------------------------- /Chapter4/loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/loader.md -------------------------------------------------------------------------------- /Chapter4/loader.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/loader.pdf -------------------------------------------------------------------------------- /Chapter4/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/sum.md -------------------------------------------------------------------------------- /Chapter4/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter4/test.txt -------------------------------------------------------------------------------- /Chapter5/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/01.md -------------------------------------------------------------------------------- /Chapter5/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/02.md -------------------------------------------------------------------------------- /Chapter5/03Chain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/03Chain.ipynb -------------------------------------------------------------------------------- /Chapter5/05RouterChain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/05RouterChain.ipynb -------------------------------------------------------------------------------- /Chapter5/08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/08.md -------------------------------------------------------------------------------- /Chapter5/08ChainWiki.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/08ChainWiki.ipynb -------------------------------------------------------------------------------- /Chapter5/09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/09.md -------------------------------------------------------------------------------- /Chapter5/09stuffChain-refineChain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/09stuffChain-refineChain.ipynb -------------------------------------------------------------------------------- /Chapter5/10.md: -------------------------------------------------------------------------------- 1 | # Map reduce documentation chain 2 | - -------------------------------------------------------------------------------- /Chapter5/10MapReduce.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/10MapReduce.ipynb -------------------------------------------------------------------------------- /Chapter5/11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/11.md -------------------------------------------------------------------------------- /Chapter5/11Memory.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/11Memory.ipynb -------------------------------------------------------------------------------- /Chapter5/12chainMemory.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/12chainMemory.ipynb -------------------------------------------------------------------------------- /Chapter5/13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/13.md -------------------------------------------------------------------------------- /Chapter5/img/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/img/map.png -------------------------------------------------------------------------------- /Chapter5/letter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/letter.txt -------------------------------------------------------------------------------- /Chapter5/loader.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/loader.pdf -------------------------------------------------------------------------------- /Chapter5/test_faiss/index.faiss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/test_faiss/index.faiss -------------------------------------------------------------------------------- /Chapter5/test_faiss/index.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter5/test_faiss/index.pkl -------------------------------------------------------------------------------- /Chapter6/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/01.md -------------------------------------------------------------------------------- /Chapter6/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/02.md -------------------------------------------------------------------------------- /Chapter6/03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/03.md -------------------------------------------------------------------------------- /Chapter6/03Agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/03Agent.ipynb -------------------------------------------------------------------------------- /Chapter6/04.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/04.ipynb -------------------------------------------------------------------------------- /Chapter6/05.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/05.ipynb -------------------------------------------------------------------------------- /Chapter6/07agent-share-memory.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/07agent-share-memory.ipynb -------------------------------------------------------------------------------- /Chapter6/08LangChain-Agents.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/08LangChain-Agents.ipynb -------------------------------------------------------------------------------- /Chapter6/09Tookit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/09Tookit.ipynb -------------------------------------------------------------------------------- /Chapter6/10LCEL.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/10LCEL.ipynb -------------------------------------------------------------------------------- /Chapter6/11LCEL2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/11LCEL2.ipynb -------------------------------------------------------------------------------- /Chapter6/12LCEL-Chain-Prompt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/12LCEL-Chain-Prompt.ipynb -------------------------------------------------------------------------------- /Chapter6/13LCEL-Memory.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/13LCEL-Memory.ipynb -------------------------------------------------------------------------------- /Chapter6/14LCEL-Agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/14LCEL-Agent.ipynb -------------------------------------------------------------------------------- /Chapter6/15LocalModel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/15LocalModel.ipynb -------------------------------------------------------------------------------- /Chapter6/Chinook.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/Chinook.db -------------------------------------------------------------------------------- /Chapter6/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter6/test.py -------------------------------------------------------------------------------- /Chapter7/01.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter7/01.ipynb -------------------------------------------------------------------------------- /Chapter7/02.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter7/02.ipynb -------------------------------------------------------------------------------- /Chapter7/03.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter7/03.ipynb -------------------------------------------------------------------------------- /Chapter7/04.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter7/04.ipynb -------------------------------------------------------------------------------- /Chapter7/05.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter7/05.ipynb -------------------------------------------------------------------------------- /Chapter8/01.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/01.ipynb -------------------------------------------------------------------------------- /Chapter8/02.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/02.ipynb -------------------------------------------------------------------------------- /Chapter8/031b2f83-5335-4d2f-9fa6-d66004059f8f.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/031b2f83-5335-4d2f-9fa6-d66004059f8f.mp3 -------------------------------------------------------------------------------- /Chapter8/2aa46123-695e-41e3-9a53-48bbd0c710cf.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/2aa46123-695e-41e3-9a53-48bbd0c710cf.mp3 -------------------------------------------------------------------------------- /Chapter8/334a4009-2357-4d42-a92c-70df5ac0e79a.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/334a4009-2357-4d42-a92c-70df5ac0e79a.mp3 -------------------------------------------------------------------------------- /Chapter8/4ad3bc58-adad-40ae-aa7e-dcfe40192c1b.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/4ad3bc58-adad-40ae-aa7e-dcfe40192c1b.mp3 -------------------------------------------------------------------------------- /Chapter8/711aef9f-9bf0-4c33-8b65-d95ad2f48029.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/711aef9f-9bf0-4c33-8b65-d95ad2f48029.mp3 -------------------------------------------------------------------------------- /Chapter8/aabb47fc-5099-4ffe-8788-ba6daee3d36c.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/aabb47fc-5099-4ffe-8788-ba6daee3d36c.mp3 -------------------------------------------------------------------------------- /Chapter8/baf7ffc2-d9ee-428d-9051-072e4cf57c09.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/baf7ffc2-d9ee-428d-9051-072e4cf57c09.mp3 -------------------------------------------------------------------------------- /Chapter8/bot/Btools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/bot/Btools.py -------------------------------------------------------------------------------- /Chapter8/bot/Docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/bot/Docker-compose.yml -------------------------------------------------------------------------------- /Chapter8/bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/bot/Dockerfile -------------------------------------------------------------------------------- /Chapter8/bot/nohappy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/bot/nohappy.mp3 -------------------------------------------------------------------------------- /Chapter8/bot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/bot/readme.md -------------------------------------------------------------------------------- /Chapter8/bot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/bot/requirements.txt -------------------------------------------------------------------------------- /Chapter8/bot/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/bot/server.py -------------------------------------------------------------------------------- /Chapter8/bot/tele.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/bot/tele.py -------------------------------------------------------------------------------- /Chapter8/bot/算命先手出生年月.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/bot/算命先手出生年月.mp3 -------------------------------------------------------------------------------- /Chapter8/c37ce35e-7127-420d-a27c-6687bb617ae7.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/c37ce35e-7127-420d-a27c-6687bb617ae7.mp3 -------------------------------------------------------------------------------- /Chapter8/da7cf353-adaf-44b3-ae2e-2df1e09c94ae.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/da7cf353-adaf-44b3-ae2e-2df1e09c94ae.mp3 -------------------------------------------------------------------------------- /Chapter8/db9f61ef-a5c4-453c-8495-917c33196e08.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/db9f61ef-a5c4-453c-8495-917c33196e08.mp3 -------------------------------------------------------------------------------- /Chapter8/dc56bd7f-f52e-4cb8-a2e2-6e1d62499d17.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/dc56bd7f-f52e-4cb8-a2e2-6e1d62499d17.mp3 -------------------------------------------------------------------------------- /Chapter8/e527ec33-921c-40bb-8eae-b318bd881c9e.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/e527ec33-921c-40bb-8eae-b318bd881c9e.mp3 -------------------------------------------------------------------------------- /Chapter8/local_qdrant/.lock: -------------------------------------------------------------------------------- 1 | tmp lock file -------------------------------------------------------------------------------- /Chapter8/local_qdrant/collection/local_documents/storage.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/local_qdrant/collection/local_documents/storage.sqlite -------------------------------------------------------------------------------- /Chapter8/local_qdrant/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/local_qdrant/meta.json -------------------------------------------------------------------------------- /Chapter8/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/Chapter8/sum.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/README.md -------------------------------------------------------------------------------- /de058b03-9dda-49fd-a38f-026f22678916.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/de058b03-9dda-49fd-a38f-026f22678916.mp3 -------------------------------------------------------------------------------- /imgs/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/imgs/chat.png -------------------------------------------------------------------------------- /imgs/langchain_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/imgs/langchain_track.png -------------------------------------------------------------------------------- /imgs/langchain_track1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/imgs/langchain_track1.png -------------------------------------------------------------------------------- /imgs/tinywow_2024-05-16 21-17-24_56017848.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/imgs/tinywow_2024-05-16 21-17-24_56017848.gif -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netstao/AI-Agent/HEAD/requirement.txt --------------------------------------------------------------------------------