├── .gitignore ├── 01-coze-agent ├── AI软件研发分析师-Coze实操指南-v0.md ├── AI软件研发分析师-Coze实操指南-v1.md ├── 大模型节点.png └── 头条搜索.png ├── 02-demo-agent └── ReAct.py ├── 03-frameworks ├── 251101.zip ├── 3_1_1_Chat.py ├── 3_1_2_Image.ipynb ├── 3_2_1_LangChainSimple.py ├── 3_2_2_LCEL.py ├── 3_3_3_LlamaIndexIntro.py └── data │ └── 花语秘境的故事.pdf ├── 04-assistants ├── 4.3_assistants │ ├── 4_3_1_Assistant_API.py │ ├── 4_3_2_Retrieve_Assistant_List.py │ ├── 4_3_3_Create_Thread_n_Add_Message.py │ ├── 4_3_4_Create_Run.py │ ├── 4_3_5_Retrive_Run_Status.py │ └── 4_3_6_Retrive_Run_Response.py ├── 4.4_create_PPT │ ├── CreatPPT.ipynb │ ├── sales_data.csv │ ├── 咖哥图书销量.png │ ├── 咖哥花语秘境.pptx │ └── 花语秘境咖哥.png └── 4_3_1_Assistant_API.py ├── 05-function-calls ├── 5.2_一个简单鼓励函数 │ └── 鼓励函数.py ├── 5.3_FunctionCall中Run的状态流转 │ ├── 01_直接调用Assistant无函数.py │ ├── 02_无函数问心情无限循环.py │ ├── 03_无函数问心情跳出循环.py │ ├── 04_跳出循环后静态调用函数提交结果.py │ └── 05_动态调用函数提交结果得到响应.py └── 5.4_ChatCompletionFucntionCall │ └── 查询鲜花库存.py ├── 06-ReAct-agent └── ReAct.py ├── 07-Plan-n-Execute-agent ├── Plan_n_Execute-完不成任务.py └── Plan_n_Execute-能完成任务.py ├── 08-llamaindex-RAG-agent ├── llamaindex_RAG.py ├── 电商A-Third Quarter 2023 Results.pdf └── 电商B-Third Quarter 2023 Results.pdf ├── 09-github-agents ├── 9.1_AutoGPT.txt ├── 9.2_BabyAGI.py └── 9.3_CAMEL.py ├── 10-multi-agents ├── 10.1_AutoGen.py └── 10.2_MetaGPT.py ├── README.md ├── pic ├── GPT图解.jpg ├── 动手做Agent.jpg ├── 数据分析.jpg ├── 机器学习.jpg └── 榜单.jpg ├── requirements_llama_index.txt ├── requirements_openai_langchain.txt ├── storage ├── A │ ├── default__vector_store.json │ ├── docstore.json │ ├── graph_store.json │ ├── image__vector_store.json │ └── index_store.json ├── B │ ├── default__vector_store.json │ ├── docstore.json │ ├── graph_store.json │ ├── image__vector_store.json │ └── index_store.json ├── default__vector_store.json ├── docstore.json ├── graph_store.json ├── image__vector_store.json └── index_store.json └── 勘误.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/.gitignore -------------------------------------------------------------------------------- /01-coze-agent/AI软件研发分析师-Coze实操指南-v0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/01-coze-agent/AI软件研发分析师-Coze实操指南-v0.md -------------------------------------------------------------------------------- /01-coze-agent/AI软件研发分析师-Coze实操指南-v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/01-coze-agent/AI软件研发分析师-Coze实操指南-v1.md -------------------------------------------------------------------------------- /01-coze-agent/大模型节点.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/01-coze-agent/大模型节点.png -------------------------------------------------------------------------------- /01-coze-agent/头条搜索.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/01-coze-agent/头条搜索.png -------------------------------------------------------------------------------- /02-demo-agent/ReAct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/02-demo-agent/ReAct.py -------------------------------------------------------------------------------- /03-frameworks/251101.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/03-frameworks/251101.zip -------------------------------------------------------------------------------- /03-frameworks/3_1_1_Chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/03-frameworks/3_1_1_Chat.py -------------------------------------------------------------------------------- /03-frameworks/3_1_2_Image.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/03-frameworks/3_1_2_Image.ipynb -------------------------------------------------------------------------------- /03-frameworks/3_2_1_LangChainSimple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/03-frameworks/3_2_1_LangChainSimple.py -------------------------------------------------------------------------------- /03-frameworks/3_2_2_LCEL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/03-frameworks/3_2_2_LCEL.py -------------------------------------------------------------------------------- /03-frameworks/3_3_3_LlamaIndexIntro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/03-frameworks/3_3_3_LlamaIndexIntro.py -------------------------------------------------------------------------------- /03-frameworks/data/花语秘境的故事.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/03-frameworks/data/花语秘境的故事.pdf -------------------------------------------------------------------------------- /04-assistants/4.3_assistants/4_3_1_Assistant_API.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/04-assistants/4.3_assistants/4_3_1_Assistant_API.py -------------------------------------------------------------------------------- /04-assistants/4.3_assistants/4_3_2_Retrieve_Assistant_List.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/04-assistants/4.3_assistants/4_3_2_Retrieve_Assistant_List.py -------------------------------------------------------------------------------- /04-assistants/4.3_assistants/4_3_3_Create_Thread_n_Add_Message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/04-assistants/4.3_assistants/4_3_3_Create_Thread_n_Add_Message.py -------------------------------------------------------------------------------- /04-assistants/4.3_assistants/4_3_4_Create_Run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/04-assistants/4.3_assistants/4_3_4_Create_Run.py -------------------------------------------------------------------------------- /04-assistants/4.3_assistants/4_3_5_Retrive_Run_Status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/04-assistants/4.3_assistants/4_3_5_Retrive_Run_Status.py -------------------------------------------------------------------------------- /04-assistants/4.3_assistants/4_3_6_Retrive_Run_Response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/04-assistants/4.3_assistants/4_3_6_Retrive_Run_Response.py -------------------------------------------------------------------------------- /04-assistants/4.4_create_PPT/CreatPPT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/04-assistants/4.4_create_PPT/CreatPPT.ipynb -------------------------------------------------------------------------------- /04-assistants/4.4_create_PPT/sales_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/04-assistants/4.4_create_PPT/sales_data.csv -------------------------------------------------------------------------------- /04-assistants/4.4_create_PPT/咖哥图书销量.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/04-assistants/4.4_create_PPT/咖哥图书销量.png -------------------------------------------------------------------------------- /04-assistants/4.4_create_PPT/咖哥花语秘境.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/04-assistants/4.4_create_PPT/咖哥花语秘境.pptx -------------------------------------------------------------------------------- /04-assistants/4.4_create_PPT/花语秘境咖哥.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/04-assistants/4.4_create_PPT/花语秘境咖哥.png -------------------------------------------------------------------------------- /04-assistants/4_3_1_Assistant_API.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/04-assistants/4_3_1_Assistant_API.py -------------------------------------------------------------------------------- /05-function-calls/5.2_一个简单鼓励函数/鼓励函数.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/05-function-calls/5.2_一个简单鼓励函数/鼓励函数.py -------------------------------------------------------------------------------- /05-function-calls/5.3_FunctionCall中Run的状态流转/01_直接调用Assistant无函数.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/05-function-calls/5.3_FunctionCall中Run的状态流转/01_直接调用Assistant无函数.py -------------------------------------------------------------------------------- /05-function-calls/5.3_FunctionCall中Run的状态流转/02_无函数问心情无限循环.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/05-function-calls/5.3_FunctionCall中Run的状态流转/02_无函数问心情无限循环.py -------------------------------------------------------------------------------- /05-function-calls/5.3_FunctionCall中Run的状态流转/03_无函数问心情跳出循环.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/05-function-calls/5.3_FunctionCall中Run的状态流转/03_无函数问心情跳出循环.py -------------------------------------------------------------------------------- /05-function-calls/5.3_FunctionCall中Run的状态流转/04_跳出循环后静态调用函数提交结果.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/05-function-calls/5.3_FunctionCall中Run的状态流转/04_跳出循环后静态调用函数提交结果.py -------------------------------------------------------------------------------- /05-function-calls/5.3_FunctionCall中Run的状态流转/05_动态调用函数提交结果得到响应.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/05-function-calls/5.3_FunctionCall中Run的状态流转/05_动态调用函数提交结果得到响应.py -------------------------------------------------------------------------------- /05-function-calls/5.4_ChatCompletionFucntionCall/查询鲜花库存.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/05-function-calls/5.4_ChatCompletionFucntionCall/查询鲜花库存.py -------------------------------------------------------------------------------- /06-ReAct-agent/ReAct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/06-ReAct-agent/ReAct.py -------------------------------------------------------------------------------- /07-Plan-n-Execute-agent/Plan_n_Execute-完不成任务.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/07-Plan-n-Execute-agent/Plan_n_Execute-完不成任务.py -------------------------------------------------------------------------------- /07-Plan-n-Execute-agent/Plan_n_Execute-能完成任务.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/07-Plan-n-Execute-agent/Plan_n_Execute-能完成任务.py -------------------------------------------------------------------------------- /08-llamaindex-RAG-agent/llamaindex_RAG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/08-llamaindex-RAG-agent/llamaindex_RAG.py -------------------------------------------------------------------------------- /08-llamaindex-RAG-agent/电商A-Third Quarter 2023 Results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/08-llamaindex-RAG-agent/电商A-Third Quarter 2023 Results.pdf -------------------------------------------------------------------------------- /08-llamaindex-RAG-agent/电商B-Third Quarter 2023 Results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/08-llamaindex-RAG-agent/电商B-Third Quarter 2023 Results.pdf -------------------------------------------------------------------------------- /09-github-agents/9.1_AutoGPT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/09-github-agents/9.1_AutoGPT.txt -------------------------------------------------------------------------------- /09-github-agents/9.2_BabyAGI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/09-github-agents/9.2_BabyAGI.py -------------------------------------------------------------------------------- /09-github-agents/9.3_CAMEL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/09-github-agents/9.3_CAMEL.py -------------------------------------------------------------------------------- /10-multi-agents/10.1_AutoGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/10-multi-agents/10.1_AutoGen.py -------------------------------------------------------------------------------- /10-multi-agents/10.2_MetaGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/10-multi-agents/10.2_MetaGPT.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/README.md -------------------------------------------------------------------------------- /pic/GPT图解.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/pic/GPT图解.jpg -------------------------------------------------------------------------------- /pic/动手做Agent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/pic/动手做Agent.jpg -------------------------------------------------------------------------------- /pic/数据分析.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/pic/数据分析.jpg -------------------------------------------------------------------------------- /pic/机器学习.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/pic/机器学习.jpg -------------------------------------------------------------------------------- /pic/榜单.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/pic/榜单.jpg -------------------------------------------------------------------------------- /requirements_llama_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/requirements_llama_index.txt -------------------------------------------------------------------------------- /requirements_openai_langchain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/requirements_openai_langchain.txt -------------------------------------------------------------------------------- /storage/A/default__vector_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/storage/A/default__vector_store.json -------------------------------------------------------------------------------- /storage/A/docstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/storage/A/docstore.json -------------------------------------------------------------------------------- /storage/A/graph_store.json: -------------------------------------------------------------------------------- 1 | {"graph_dict": {}} -------------------------------------------------------------------------------- /storage/A/image__vector_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/storage/A/image__vector_store.json -------------------------------------------------------------------------------- /storage/A/index_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/storage/A/index_store.json -------------------------------------------------------------------------------- /storage/B/default__vector_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/storage/B/default__vector_store.json -------------------------------------------------------------------------------- /storage/B/docstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/storage/B/docstore.json -------------------------------------------------------------------------------- /storage/B/graph_store.json: -------------------------------------------------------------------------------- 1 | {"graph_dict": {}} -------------------------------------------------------------------------------- /storage/B/image__vector_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/storage/B/image__vector_store.json -------------------------------------------------------------------------------- /storage/B/index_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/storage/B/index_store.json -------------------------------------------------------------------------------- /storage/default__vector_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/storage/default__vector_store.json -------------------------------------------------------------------------------- /storage/docstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/storage/docstore.json -------------------------------------------------------------------------------- /storage/graph_store.json: -------------------------------------------------------------------------------- 1 | {"graph_dict": {}} -------------------------------------------------------------------------------- /storage/image__vector_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/storage/image__vector_store.json -------------------------------------------------------------------------------- /storage/index_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/storage/index_store.json -------------------------------------------------------------------------------- /勘误.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/ai-agents/HEAD/勘误.md --------------------------------------------------------------------------------