├── 01_BasicIntro ├── 01_AGI知识体系介绍 │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ ├── HowAreWeFromAGI.pdf │ ├── LevelsofAGI.pdf │ └── README.md ├── 02_集成开发环境搭建 │ └── README.md └── 03_LLM服务调用方案 │ └── README.md ├── 02_PromptEngineering ├── 01_BasicDemoWithLangChain │ ├── apiTest.py │ ├── llmsTest.py │ ├── main.py │ ├── prompt_template_system.txt │ ├── prompt_template_user.txt │ ├── utils │ │ ├── config.py │ │ └── llms.py │ └── webUI.py ├── 02_BasicDemoWithLangChain │ ├── apiTest.py │ ├── llmsTest.py │ ├── main.py │ ├── prompt_template_system.txt │ ├── prompt_template_user.txt │ ├── utils │ │ ├── config.py │ │ └── llms.py │ └── webUI.py ├── 03_26条有效的提示词技巧 │ ├── 2312.16171v2.pdf │ └── README.md ├── README.md └── requirements.txt ├── 03_KAG ├── 01_WebAppTest │ ├── JayChou.txt │ └── JayChouTest.schema ├── 02_KagV7Test │ ├── JayChouTest01 │ │ ├── builder │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ └── indexer.cpython-311.pyc │ │ │ ├── ckpt │ │ │ │ ├── extractor │ │ │ │ │ ├── kag_checkpoint_0_1.ckpt │ │ │ │ │ ├── kag_checkpoint_0_1.ckpt.index │ │ │ │ │ ├── kag_checkpoint_0_1.ckpt.lock │ │ │ │ │ └── kag_checkpoint_0_1.ckpt.tmp │ │ │ │ ├── kag_checkpoint_0_1.ckpt │ │ │ │ ├── reader │ │ │ │ │ ├── kag_checkpoint_0_1.ckpt │ │ │ │ │ ├── kag_checkpoint_0_1.ckpt.index │ │ │ │ │ ├── kag_checkpoint_0_1.ckpt.lock │ │ │ │ │ └── kag_checkpoint_0_1.ckpt.tmp │ │ │ │ ├── splitter │ │ │ │ │ ├── kag_checkpoint_0_1.ckpt │ │ │ │ │ ├── kag_checkpoint_0_1.ckpt.index │ │ │ │ │ ├── kag_checkpoint_0_1.ckpt.lock │ │ │ │ │ └── kag_checkpoint_0_1.ckpt.tmp │ │ │ │ └── writer │ │ │ │ │ ├── kag_checkpoint_0_1.ckpt │ │ │ │ │ ├── kag_checkpoint_0_1.ckpt.index │ │ │ │ │ ├── kag_checkpoint_0_1.ckpt.lock │ │ │ │ │ └── kag_checkpoint_0_1.ckpt.tmp │ │ │ ├── data │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-311.pyc │ │ │ │ └── jay.txt │ │ │ ├── indexer.py │ │ │ └── prompt │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── ner.cpython-311.pyc │ │ │ │ ├── std.cpython-311.pyc │ │ │ │ └── triple.cpython-311.pyc │ │ │ │ ├── ner.py │ │ │ │ ├── std.py │ │ │ │ └── triple.py │ │ ├── kag_config.yaml │ │ ├── reasoner │ │ │ └── __init__.py │ │ ├── schema │ │ │ ├── JayChouTest01.schema │ │ │ └── __init__.py │ │ └── solver │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ └── __init__.py │ │ │ ├── prompt │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-311.pyc │ │ │ └── query.py │ └── config │ │ ├── JayChouTest.schema │ │ ├── example_config.yaml │ │ └── jay.txt ├── README.md └── docker-compose.yml ├── 03_RAG ├── 01_RagDemoWithLangChain │ ├── apiTest.py │ ├── input │ │ ├── DeepSeek_R1.pdf │ │ └── 健康档案.pdf │ ├── llmsTest.py │ ├── main.py │ ├── mainWithReranker.py │ ├── prompt_template_system.txt │ ├── prompt_template_user.txt │ ├── utils │ │ ├── config.py │ │ ├── llms.py │ │ ├── pdfSplitTestCh.py │ │ └── pdfSplitTestEn.py │ ├── vectorSaveTest.py │ └── webUI.py ├── README.md └── requirements.txt ├── 04_Agent ├── LangGraphChatBot │ ├── 01_ChatBot │ │ ├── apiTest.py │ │ ├── llms.py │ │ ├── main.py │ │ ├── prompt_template_system.txt │ │ ├── prompt_template_user.txt │ │ └── webUI.py │ ├── 02_ChatBot │ │ ├── apiTest.py │ │ ├── demoWithMemory.py │ │ ├── llms.py │ │ ├── main.py │ │ ├── prompt_template_system.txt │ │ ├── prompt_template_user.txt │ │ └── webUI.py │ ├── 03_ChatBotWithPostgres │ │ ├── __pycache__ │ │ │ └── llms.cpython-311.pyc │ │ ├── apiTest.py │ │ ├── demoWithMemory.py │ │ ├── docker-compose.yml │ │ ├── llms.py │ │ ├── main.py │ │ ├── prompt_template_system.txt │ │ ├── prompt_template_user.txt │ │ └── webUI.py │ ├── 04_RagAgent │ │ ├── __pycache__ │ │ │ └── demoRagAgent.cpython-311.pyc │ │ ├── apiTest.py │ │ ├── demoRagAgent.py │ │ ├── input │ │ │ └── 健康档案.pdf │ │ ├── main.py │ │ ├── output │ │ │ └── app.log │ │ ├── prompts │ │ │ ├── prompt_template_agent.txt │ │ │ ├── prompt_template_generate.txt │ │ │ ├── prompt_template_grade.txt │ │ │ └── prompt_template_rewrite.txt │ │ ├── utils │ │ │ ├── __pycache__ │ │ │ │ ├── config.cpython-311.pyc │ │ │ │ ├── llms.cpython-311.pyc │ │ │ │ ├── pdfSplitTest_Ch.cpython-311.pyc │ │ │ │ ├── pdfSplitTest_En.cpython-311.pyc │ │ │ │ └── tools_config.cpython-311.pyc │ │ │ ├── config.py │ │ │ ├── llms.py │ │ │ ├── pdfSplitTest_Ch.py │ │ │ ├── pdfSplitTest_En.py │ │ │ └── tools_config.py │ │ ├── vectorSaveTest.py │ │ └── webUI.py │ ├── README.md │ └── pictures │ │ └── 01.png └── README.md ├── 05_FineTuning └── README.md ├── LICENSE ├── README.md └── other ├── 01.png └── 02.png /01_BasicIntro/01_AGI知识体系介绍/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/01_BasicIntro/01_AGI知识体系介绍/01.png -------------------------------------------------------------------------------- /01_BasicIntro/01_AGI知识体系介绍/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/01_BasicIntro/01_AGI知识体系介绍/02.png -------------------------------------------------------------------------------- /01_BasicIntro/01_AGI知识体系介绍/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/01_BasicIntro/01_AGI知识体系介绍/03.png -------------------------------------------------------------------------------- /01_BasicIntro/01_AGI知识体系介绍/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/01_BasicIntro/01_AGI知识体系介绍/04.png -------------------------------------------------------------------------------- /01_BasicIntro/01_AGI知识体系介绍/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/01_BasicIntro/01_AGI知识体系介绍/05.png -------------------------------------------------------------------------------- /01_BasicIntro/01_AGI知识体系介绍/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/01_BasicIntro/01_AGI知识体系介绍/06.png -------------------------------------------------------------------------------- /01_BasicIntro/01_AGI知识体系介绍/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/01_BasicIntro/01_AGI知识体系介绍/07.png -------------------------------------------------------------------------------- /01_BasicIntro/01_AGI知识体系介绍/HowAreWeFromAGI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/01_BasicIntro/01_AGI知识体系介绍/HowAreWeFromAGI.pdf -------------------------------------------------------------------------------- /01_BasicIntro/01_AGI知识体系介绍/LevelsofAGI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/01_BasicIntro/01_AGI知识体系介绍/LevelsofAGI.pdf -------------------------------------------------------------------------------- /01_BasicIntro/01_AGI知识体系介绍/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/01_BasicIntro/01_AGI知识体系介绍/README.md -------------------------------------------------------------------------------- /01_BasicIntro/02_集成开发环境搭建/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/01_BasicIntro/02_集成开发环境搭建/README.md -------------------------------------------------------------------------------- /01_BasicIntro/03_LLM服务调用方案/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/01_BasicIntro/03_LLM服务调用方案/README.md -------------------------------------------------------------------------------- /02_PromptEngineering/01_BasicDemoWithLangChain/apiTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/01_BasicDemoWithLangChain/apiTest.py -------------------------------------------------------------------------------- /02_PromptEngineering/01_BasicDemoWithLangChain/llmsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/01_BasicDemoWithLangChain/llmsTest.py -------------------------------------------------------------------------------- /02_PromptEngineering/01_BasicDemoWithLangChain/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/01_BasicDemoWithLangChain/main.py -------------------------------------------------------------------------------- /02_PromptEngineering/01_BasicDemoWithLangChain/prompt_template_system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/01_BasicDemoWithLangChain/prompt_template_system.txt -------------------------------------------------------------------------------- /02_PromptEngineering/01_BasicDemoWithLangChain/prompt_template_user.txt: -------------------------------------------------------------------------------- 1 | 用户问: 2 | {query} 3 | 4 | -------------------------------------------------------------------------------- /02_PromptEngineering/01_BasicDemoWithLangChain/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/01_BasicDemoWithLangChain/utils/config.py -------------------------------------------------------------------------------- /02_PromptEngineering/01_BasicDemoWithLangChain/utils/llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/01_BasicDemoWithLangChain/utils/llms.py -------------------------------------------------------------------------------- /02_PromptEngineering/01_BasicDemoWithLangChain/webUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/01_BasicDemoWithLangChain/webUI.py -------------------------------------------------------------------------------- /02_PromptEngineering/02_BasicDemoWithLangChain/apiTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/02_BasicDemoWithLangChain/apiTest.py -------------------------------------------------------------------------------- /02_PromptEngineering/02_BasicDemoWithLangChain/llmsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/02_BasicDemoWithLangChain/llmsTest.py -------------------------------------------------------------------------------- /02_PromptEngineering/02_BasicDemoWithLangChain/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/02_BasicDemoWithLangChain/main.py -------------------------------------------------------------------------------- /02_PromptEngineering/02_BasicDemoWithLangChain/prompt_template_system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/02_BasicDemoWithLangChain/prompt_template_system.txt -------------------------------------------------------------------------------- /02_PromptEngineering/02_BasicDemoWithLangChain/prompt_template_user.txt: -------------------------------------------------------------------------------- 1 | 对话记录: 2 | {query} 3 | 4 | -------------------------------------------------------------------------------- /02_PromptEngineering/02_BasicDemoWithLangChain/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/02_BasicDemoWithLangChain/utils/config.py -------------------------------------------------------------------------------- /02_PromptEngineering/02_BasicDemoWithLangChain/utils/llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/02_BasicDemoWithLangChain/utils/llms.py -------------------------------------------------------------------------------- /02_PromptEngineering/02_BasicDemoWithLangChain/webUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/02_BasicDemoWithLangChain/webUI.py -------------------------------------------------------------------------------- /02_PromptEngineering/03_26条有效的提示词技巧/2312.16171v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/03_26条有效的提示词技巧/2312.16171v2.pdf -------------------------------------------------------------------------------- /02_PromptEngineering/03_26条有效的提示词技巧/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/03_26条有效的提示词技巧/README.md -------------------------------------------------------------------------------- /02_PromptEngineering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/README.md -------------------------------------------------------------------------------- /02_PromptEngineering/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/02_PromptEngineering/requirements.txt -------------------------------------------------------------------------------- /03_KAG/01_WebAppTest/JayChou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/01_WebAppTest/JayChou.txt -------------------------------------------------------------------------------- /03_KAG/01_WebAppTest/JayChouTest.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/01_WebAppTest/JayChouTest.schema -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/__init__.py -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/__pycache__/indexer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/__pycache__/indexer.cpython-311.pyc -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/extractor/kag_checkpoint_0_1.ckpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/extractor/kag_checkpoint_0_1.ckpt -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/extractor/kag_checkpoint_0_1.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/extractor/kag_checkpoint_0_1.ckpt.index -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/extractor/kag_checkpoint_0_1.ckpt.lock: -------------------------------------------------------------------------------- 1 | 33953 2 | -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/extractor/kag_checkpoint_0_1.ckpt.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/extractor/kag_checkpoint_0_1.ckpt.tmp -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/kag_checkpoint_0_1.ckpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/kag_checkpoint_0_1.ckpt -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/reader/kag_checkpoint_0_1.ckpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/reader/kag_checkpoint_0_1.ckpt -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/reader/kag_checkpoint_0_1.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/reader/kag_checkpoint_0_1.ckpt.index -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/reader/kag_checkpoint_0_1.ckpt.lock: -------------------------------------------------------------------------------- 1 | 33953 2 | -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/reader/kag_checkpoint_0_1.ckpt.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/reader/kag_checkpoint_0_1.ckpt.tmp -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/splitter/kag_checkpoint_0_1.ckpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/splitter/kag_checkpoint_0_1.ckpt -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/splitter/kag_checkpoint_0_1.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/splitter/kag_checkpoint_0_1.ckpt.index -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/splitter/kag_checkpoint_0_1.ckpt.lock: -------------------------------------------------------------------------------- 1 | 33953 2 | -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/splitter/kag_checkpoint_0_1.ckpt.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/splitter/kag_checkpoint_0_1.ckpt.tmp -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/writer/kag_checkpoint_0_1.ckpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/writer/kag_checkpoint_0_1.ckpt -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/writer/kag_checkpoint_0_1.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/writer/kag_checkpoint_0_1.ckpt.index -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/writer/kag_checkpoint_0_1.ckpt.lock: -------------------------------------------------------------------------------- 1 | 33953 2 | -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/writer/kag_checkpoint_0_1.ckpt.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/ckpt/writer/kag_checkpoint_0_1.ckpt.tmp -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/data/__init__.py -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/data/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/data/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/data/jay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/data/jay.txt -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/indexer.py -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/__init__.py -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/__pycache__/ner.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/__pycache__/ner.cpython-311.pyc -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/__pycache__/std.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/__pycache__/std.cpython-311.pyc -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/__pycache__/triple.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/__pycache__/triple.cpython-311.pyc -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/ner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/ner.py -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/std.py -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/triple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/builder/prompt/triple.py -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/kag_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/kag_config.yaml -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/reasoner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/reasoner/__init__.py -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/schema/JayChouTest01.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/schema/JayChouTest01.schema -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/schema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/schema/__init__.py -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/solver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/solver/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/solver/data/__init__.py -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/solver/prompt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/solver/prompt/__init__.py -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/solver/prompt/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/solver/prompt/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/JayChouTest01/solver/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/JayChouTest01/solver/query.py -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/config/JayChouTest.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/config/JayChouTest.schema -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/config/example_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/config/example_config.yaml -------------------------------------------------------------------------------- /03_KAG/02_KagV7Test/config/jay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/02_KagV7Test/config/jay.txt -------------------------------------------------------------------------------- /03_KAG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/README.md -------------------------------------------------------------------------------- /03_KAG/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_KAG/docker-compose.yml -------------------------------------------------------------------------------- /03_RAG/01_RagDemoWithLangChain/apiTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_RAG/01_RagDemoWithLangChain/apiTest.py -------------------------------------------------------------------------------- /03_RAG/01_RagDemoWithLangChain/input/DeepSeek_R1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_RAG/01_RagDemoWithLangChain/input/DeepSeek_R1.pdf -------------------------------------------------------------------------------- /03_RAG/01_RagDemoWithLangChain/input/健康档案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_RAG/01_RagDemoWithLangChain/input/健康档案.pdf -------------------------------------------------------------------------------- /03_RAG/01_RagDemoWithLangChain/llmsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_RAG/01_RagDemoWithLangChain/llmsTest.py -------------------------------------------------------------------------------- /03_RAG/01_RagDemoWithLangChain/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_RAG/01_RagDemoWithLangChain/main.py -------------------------------------------------------------------------------- /03_RAG/01_RagDemoWithLangChain/mainWithReranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_RAG/01_RagDemoWithLangChain/mainWithReranker.py -------------------------------------------------------------------------------- /03_RAG/01_RagDemoWithLangChain/prompt_template_system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_RAG/01_RagDemoWithLangChain/prompt_template_system.txt -------------------------------------------------------------------------------- /03_RAG/01_RagDemoWithLangChain/prompt_template_user.txt: -------------------------------------------------------------------------------- 1 | 用户问: 2 | {query} 3 | 4 | -------------------------------------------------------------------------------- /03_RAG/01_RagDemoWithLangChain/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_RAG/01_RagDemoWithLangChain/utils/config.py -------------------------------------------------------------------------------- /03_RAG/01_RagDemoWithLangChain/utils/llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_RAG/01_RagDemoWithLangChain/utils/llms.py -------------------------------------------------------------------------------- /03_RAG/01_RagDemoWithLangChain/utils/pdfSplitTestCh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_RAG/01_RagDemoWithLangChain/utils/pdfSplitTestCh.py -------------------------------------------------------------------------------- /03_RAG/01_RagDemoWithLangChain/utils/pdfSplitTestEn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_RAG/01_RagDemoWithLangChain/utils/pdfSplitTestEn.py -------------------------------------------------------------------------------- /03_RAG/01_RagDemoWithLangChain/vectorSaveTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_RAG/01_RagDemoWithLangChain/vectorSaveTest.py -------------------------------------------------------------------------------- /03_RAG/01_RagDemoWithLangChain/webUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_RAG/01_RagDemoWithLangChain/webUI.py -------------------------------------------------------------------------------- /03_RAG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_RAG/README.md -------------------------------------------------------------------------------- /03_RAG/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/03_RAG/requirements.txt -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/01_ChatBot/apiTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/01_ChatBot/apiTest.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/01_ChatBot/llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/01_ChatBot/llms.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/01_ChatBot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/01_ChatBot/main.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/01_ChatBot/prompt_template_system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/01_ChatBot/prompt_template_system.txt -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/01_ChatBot/prompt_template_user.txt: -------------------------------------------------------------------------------- 1 | 用户问: 2 | {query} 3 | 4 | -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/01_ChatBot/webUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/01_ChatBot/webUI.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/02_ChatBot/apiTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/02_ChatBot/apiTest.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/02_ChatBot/demoWithMemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/02_ChatBot/demoWithMemory.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/02_ChatBot/llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/02_ChatBot/llms.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/02_ChatBot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/02_ChatBot/main.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/02_ChatBot/prompt_template_system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/02_ChatBot/prompt_template_system.txt -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/02_ChatBot/prompt_template_user.txt: -------------------------------------------------------------------------------- 1 | 用户问: 2 | {query} 3 | 4 | -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/02_ChatBot/webUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/02_ChatBot/webUI.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/__pycache__/llms.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/__pycache__/llms.cpython-311.pyc -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/apiTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/apiTest.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/demoWithMemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/demoWithMemory.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/docker-compose.yml -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/llms.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/main.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/prompt_template_system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/prompt_template_system.txt -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/prompt_template_user.txt: -------------------------------------------------------------------------------- 1 | 用户问: 2 | {query} 3 | 4 | -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/webUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/03_ChatBotWithPostgres/webUI.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/__pycache__/demoRagAgent.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/__pycache__/demoRagAgent.cpython-311.pyc -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/apiTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/apiTest.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/demoRagAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/demoRagAgent.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/input/健康档案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/input/健康档案.pdf -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/main.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/output/app.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/prompts/prompt_template_agent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/prompts/prompt_template_agent.txt -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/prompts/prompt_template_generate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/prompts/prompt_template_generate.txt -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/prompts/prompt_template_grade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/prompts/prompt_template_grade.txt -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/prompts/prompt_template_rewrite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/prompts/prompt_template_rewrite.txt -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/utils/__pycache__/config.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/utils/__pycache__/config.cpython-311.pyc -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/utils/__pycache__/llms.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/utils/__pycache__/llms.cpython-311.pyc -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/utils/__pycache__/pdfSplitTest_Ch.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/utils/__pycache__/pdfSplitTest_Ch.cpython-311.pyc -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/utils/__pycache__/pdfSplitTest_En.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/utils/__pycache__/pdfSplitTest_En.cpython-311.pyc -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/utils/__pycache__/tools_config.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/utils/__pycache__/tools_config.cpython-311.pyc -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/utils/config.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/utils/llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/utils/llms.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/utils/pdfSplitTest_Ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/utils/pdfSplitTest_Ch.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/utils/pdfSplitTest_En.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/utils/pdfSplitTest_En.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/utils/tools_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/utils/tools_config.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/vectorSaveTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/vectorSaveTest.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/04_RagAgent/webUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/04_RagAgent/webUI.py -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/README.md -------------------------------------------------------------------------------- /04_Agent/LangGraphChatBot/pictures/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/LangGraphChatBot/pictures/01.png -------------------------------------------------------------------------------- /04_Agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/04_Agent/README.md -------------------------------------------------------------------------------- /05_FineTuning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/05_FineTuning/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/README.md -------------------------------------------------------------------------------- /other/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/other/01.png -------------------------------------------------------------------------------- /other/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanGePlus/LLMsBasisDevelopment/HEAD/other/02.png --------------------------------------------------------------------------------