├── README.md ├── code ├── .env ├── toolkit │ └── MySearchToolkit.py ├── 第一章.ipynb ├── 第三章.ipynb ├── 第二章.ipynb ├── 第五章 │ ├── examples │ │ └── NavigatorAI │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── backend │ │ │ ├── .env.example │ │ │ ├── .gitignore │ │ │ ├── app.py │ │ │ ├── beijing-user-modified.html │ │ │ ├── beijing.html │ │ │ ├── bg-1.png │ │ │ ├── bg-2.png │ │ │ ├── bg-3.png │ │ │ ├── chat │ │ │ │ ├── api.py │ │ │ │ ├── conversation.py │ │ │ │ └── online │ │ │ │ │ └── search │ │ │ │ │ └── article_1.md │ │ │ ├── github.css │ │ │ ├── html2pdf.py │ │ │ ├── main.py │ │ │ ├── module │ │ │ │ ├── storage │ │ │ │ │ ├── 上海3天旅游信息.json │ │ │ │ │ ├── 成都3天旅游信息.json │ │ │ │ │ ├── 成都3天旅游攻略.html │ │ │ │ │ ├── 成都3天旅游攻略.pdf │ │ │ │ │ └── 新疆7天旅游信息.json │ │ │ │ ├── travel_guide_generation.py │ │ │ │ ├── travel_information_integration.py │ │ │ │ └── user_information_extraction.py │ │ │ ├── pdf2image.py │ │ │ ├── print.py │ │ │ └── requirements.txt │ │ │ └── frontend │ │ │ ├── .env.example │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ ├── api │ │ │ │ └── files │ │ │ │ │ ├── route.ts │ │ │ │ │ └── save │ │ │ │ │ └── route.ts │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ │ ├── components │ │ │ ├── chat-header.tsx │ │ │ ├── chat-input.tsx │ │ │ ├── chat-messages.tsx │ │ │ ├── file-preview-controls.tsx │ │ │ ├── file-sidebar.tsx │ │ │ ├── profile-modal.tsx │ │ │ ├── server-selector.tsx │ │ │ ├── settings-modal.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── theme-provider.tsx │ │ │ └── ui │ │ │ │ ├── avatar.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── calendar.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── collapsible.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── scroll-area.tsx │ │ │ │ ├── select.tsx │ │ │ │ └── textarea.tsx │ │ │ ├── hooks │ │ │ └── use-theme.ts │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── postcss.config.js │ │ │ ├── public │ │ │ ├── logo.png │ │ │ └── output_images │ │ │ │ ├── page_1.png │ │ │ │ ├── page_2.png │ │ │ │ ├── page_3.png │ │ │ │ └── page_4.png │ │ │ ├── styles │ │ │ └── scrollbar.css │ │ │ ├── tailwind.config.js │ │ │ ├── tsconfig.json │ │ │ ├── types.ts │ │ │ └── types │ │ │ └── index.ts │ ├── img │ │ ├── image1.png │ │ ├── image2.png │ │ ├── image3.png │ │ ├── image4.png │ │ ├── image5.png │ │ ├── image6.png │ │ ├── image7.png │ │ ├── image8.png │ │ └── image9.png │ ├── 上海3天旅游信息.json │ ├── 成都3天旅游信息.json │ ├── 新疆7天旅游信息.json │ └── 第五章.ipynb └── 第四章 │ ├── 4.1节.ipynb │ ├── 4.2-4.4节.ipynb │ ├── 4.5.ipynb │ ├── 4.6.ipynb │ ├── example_document.md │ ├── img │ ├── image1.png │ ├── image10.png │ ├── image2.png │ ├── image3.png │ ├── image4.png │ ├── image5.png │ ├── image6.png │ ├── image7.png │ ├── image8.png │ └── image9.png │ └── test.pdf └── docs ├── .nojekyll ├── README.md ├── _sidebar.md ├── appendix ├── add-for-loader.md └── supported-models.md ├── chapter0 ├── 0.1.join-us.md └── 0.2.how-to-contribute.md ├── chapter1 ├── 1.1.get-camel.md ├── 1.2.api-setup.md ├── 1.3.hello-camel.md └── 1.4.homework.md ├── chapter2 ├── 2.1.agent-overview.md ├── 2.2.agent-design.md ├── 2.3.models.md ├── 2.4.messages.md ├── 2.5.prompt-engineering.md ├── 2.6.memory.md ├── 2.7.tools.md └── 2.8.homework.md ├── chapter3 ├── 3.1.camel-intro.md ├── 3.2.first-agent-society.md ├── 3.3.create-workforce.md └── 3.4.homework.md ├── chapter4 ├── 4.1.rag-components.md ├── 4.2.vector-db.md ├── 4.3.build-kb.md ├── 4.4.build-rag.md ├── 4.5.rag-evaluation.md ├── 4.6.graph-rag.md └── 4.7.homework.md ├── chapter5 ├── 5.1.overview.md ├── 5.2.intent-recognition.md ├── 5.3.travel-info.md ├── 5.4.strategy-generation.md ├── 5.5.feedback-optimization.md ├── 5.6.knowledge-integration.md └── 5.7.homework.md ├── chapter6 ├── 6.1.data-synthesis.md └── 6.2.conclusion.md ├── files ├── QQ2024123-225913-HD.mp4 ├── example_document.md ├── output.lin.pdf ├── vedio_test.mp4 ├── 上海3天旅游信息.json ├── 成都3天旅游信息.json ├── 成都3天旅游攻略.html └── 新疆7天旅游信息.json ├── images ├── 1_990694512_171_85_3_831326966_a1eb53d929927cf19797f53a61de8fd5.png ├── 1_990694512_171_85_3_831327905_a8ddb3fbc6188131b8e144ad8455e723.png ├── 84cc4e45b00fce80bfebfce9734e29a.png ├── a5021914f432051a35ff25757ce58b8.png ├── diagram-1.png ├── diagram-2.png ├── diagram.png ├── fdb6c5a5baad1fc445eab2101bceeff.png ├── image-1.png ├── image-10-2.png ├── image-10.png ├── image-11-2.png ├── image-11.png ├── image-12-2.png ├── image-12.png ├── image-13.png ├── image-14.png ├── image-15.png ├── image-16.png ├── image-17.png ├── image-18.png ├── image-19.png ├── image-2.png ├── image-20.png ├── image-21.png ├── image-22.png ├── image-23.png ├── image-24.png ├── image-25.png ├── image-26.png ├── image-27.png ├── image-28.png ├── image-29.png ├── image-3.png ├── image-30.png ├── image-31.png ├── image-32.png ├── image-33.png ├── image-34.png ├── image-35.png ├── image-36.png ├── image-37.png ├── image-38.png ├── image-39.png ├── image-4.png ├── image-40.png ├── image-41.png ├── image-42.png ├── image-5-1.png ├── image-5-2.png ├── image-6.png ├── image-7.png ├── image-8-2.png ├── image-8.png ├── image-9-2.png ├── image-9.png ├── image.png ├── {0F412F01-E241-4951-BAE0-820EA120D544}.png ├── 演示图片.png └── 演示图片2.png └── index.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/README.md -------------------------------------------------------------------------------- /code/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/.env -------------------------------------------------------------------------------- /code/toolkit/MySearchToolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/toolkit/MySearchToolkit.py -------------------------------------------------------------------------------- /code/第一章.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第一章.ipynb -------------------------------------------------------------------------------- /code/第三章.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第三章.ipynb -------------------------------------------------------------------------------- /code/第二章.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第二章.ipynb -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/.gitignore -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/README.md -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/.env.example -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/.gitignore -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/app.py -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/beijing-user-modified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/beijing-user-modified.html -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/beijing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/beijing.html -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/bg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/bg-1.png -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/bg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/bg-2.png -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/bg-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/bg-3.png -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/chat/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/chat/api.py -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/chat/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/chat/conversation.py -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/chat/online/search/article_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/chat/online/search/article_1.md -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/github.css -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/html2pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/html2pdf.py -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/main.py -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/module/storage/上海3天旅游信息.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/module/storage/上海3天旅游信息.json -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/module/storage/成都3天旅游信息.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/module/storage/成都3天旅游信息.json -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/module/storage/成都3天旅游攻略.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/module/storage/成都3天旅游攻略.html -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/module/storage/成都3天旅游攻略.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/module/storage/成都3天旅游攻略.pdf -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/module/storage/新疆7天旅游信息.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/module/storage/新疆7天旅游信息.json -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/module/travel_guide_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/module/travel_guide_generation.py -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/module/travel_information_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/module/travel_information_integration.py -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/module/user_information_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/module/user_information_extraction.py -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/pdf2image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/pdf2image.py -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/print.py -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/backend/requirements.txt -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/.env.example -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/.gitignore -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/app/api/files/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/app/api/files/route.ts -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/app/api/files/save/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/app/api/files/save/route.ts -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/app/globals.css -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/app/layout.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/app/page.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/chat-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/chat-header.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/chat-input.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/chat-messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/chat-messages.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/file-preview-controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/file-preview-controls.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/file-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/file-sidebar.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/profile-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/profile-modal.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/server-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/server-selector.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/settings-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/settings-modal.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/sidebar.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/theme-provider.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/ui/avatar.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/ui/button.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/ui/calendar.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/ui/card.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/ui/dialog.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/ui/input.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/ui/label.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/ui/popover.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/ui/select.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/components/ui/textarea.tsx -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/hooks/use-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/hooks/use-theme.ts -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/package-lock.json -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/package.json -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/postcss.config.js -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/public/logo.png -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/public/output_images/page_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/public/output_images/page_1.png -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/public/output_images/page_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/public/output_images/page_2.png -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/public/output_images/page_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/public/output_images/page_3.png -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/public/output_images/page_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/public/output_images/page_4.png -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/styles/scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/styles/scrollbar.css -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/tailwind.config.js -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/tsconfig.json -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/types.ts -------------------------------------------------------------------------------- /code/第五章/examples/NavigatorAI/frontend/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/examples/NavigatorAI/frontend/types/index.ts -------------------------------------------------------------------------------- /code/第五章/img/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/img/image1.png -------------------------------------------------------------------------------- /code/第五章/img/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/img/image2.png -------------------------------------------------------------------------------- /code/第五章/img/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/img/image3.png -------------------------------------------------------------------------------- /code/第五章/img/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/img/image4.png -------------------------------------------------------------------------------- /code/第五章/img/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/img/image5.png -------------------------------------------------------------------------------- /code/第五章/img/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/img/image6.png -------------------------------------------------------------------------------- /code/第五章/img/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/img/image7.png -------------------------------------------------------------------------------- /code/第五章/img/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/img/image8.png -------------------------------------------------------------------------------- /code/第五章/img/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/img/image9.png -------------------------------------------------------------------------------- /code/第五章/上海3天旅游信息.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/上海3天旅游信息.json -------------------------------------------------------------------------------- /code/第五章/成都3天旅游信息.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/成都3天旅游信息.json -------------------------------------------------------------------------------- /code/第五章/新疆7天旅游信息.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/新疆7天旅游信息.json -------------------------------------------------------------------------------- /code/第五章/第五章.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第五章/第五章.ipynb -------------------------------------------------------------------------------- /code/第四章/4.1节.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/4.1节.ipynb -------------------------------------------------------------------------------- /code/第四章/4.2-4.4节.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/4.2-4.4节.ipynb -------------------------------------------------------------------------------- /code/第四章/4.5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/4.5.ipynb -------------------------------------------------------------------------------- /code/第四章/4.6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/4.6.ipynb -------------------------------------------------------------------------------- /code/第四章/example_document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/example_document.md -------------------------------------------------------------------------------- /code/第四章/img/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/img/image1.png -------------------------------------------------------------------------------- /code/第四章/img/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/img/image10.png -------------------------------------------------------------------------------- /code/第四章/img/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/img/image2.png -------------------------------------------------------------------------------- /code/第四章/img/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/img/image3.png -------------------------------------------------------------------------------- /code/第四章/img/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/img/image4.png -------------------------------------------------------------------------------- /code/第四章/img/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/img/image5.png -------------------------------------------------------------------------------- /code/第四章/img/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/img/image6.png -------------------------------------------------------------------------------- /code/第四章/img/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/img/image7.png -------------------------------------------------------------------------------- /code/第四章/img/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/img/image8.png -------------------------------------------------------------------------------- /code/第四章/img/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/img/image9.png -------------------------------------------------------------------------------- /code/第四章/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/code/第四章/test.pdf -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/appendix/add-for-loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/appendix/add-for-loader.md -------------------------------------------------------------------------------- /docs/appendix/supported-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/appendix/supported-models.md -------------------------------------------------------------------------------- /docs/chapter0/0.1.join-us.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter0/0.1.join-us.md -------------------------------------------------------------------------------- /docs/chapter0/0.2.how-to-contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter0/0.2.how-to-contribute.md -------------------------------------------------------------------------------- /docs/chapter1/1.1.get-camel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter1/1.1.get-camel.md -------------------------------------------------------------------------------- /docs/chapter1/1.2.api-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter1/1.2.api-setup.md -------------------------------------------------------------------------------- /docs/chapter1/1.3.hello-camel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter1/1.3.hello-camel.md -------------------------------------------------------------------------------- /docs/chapter1/1.4.homework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter1/1.4.homework.md -------------------------------------------------------------------------------- /docs/chapter2/2.1.agent-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter2/2.1.agent-overview.md -------------------------------------------------------------------------------- /docs/chapter2/2.2.agent-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter2/2.2.agent-design.md -------------------------------------------------------------------------------- /docs/chapter2/2.3.models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter2/2.3.models.md -------------------------------------------------------------------------------- /docs/chapter2/2.4.messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter2/2.4.messages.md -------------------------------------------------------------------------------- /docs/chapter2/2.5.prompt-engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter2/2.5.prompt-engineering.md -------------------------------------------------------------------------------- /docs/chapter2/2.6.memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter2/2.6.memory.md -------------------------------------------------------------------------------- /docs/chapter2/2.7.tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter2/2.7.tools.md -------------------------------------------------------------------------------- /docs/chapter2/2.8.homework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter2/2.8.homework.md -------------------------------------------------------------------------------- /docs/chapter3/3.1.camel-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter3/3.1.camel-intro.md -------------------------------------------------------------------------------- /docs/chapter3/3.2.first-agent-society.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter3/3.2.first-agent-society.md -------------------------------------------------------------------------------- /docs/chapter3/3.3.create-workforce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter3/3.3.create-workforce.md -------------------------------------------------------------------------------- /docs/chapter3/3.4.homework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter3/3.4.homework.md -------------------------------------------------------------------------------- /docs/chapter4/4.1.rag-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter4/4.1.rag-components.md -------------------------------------------------------------------------------- /docs/chapter4/4.2.vector-db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter4/4.2.vector-db.md -------------------------------------------------------------------------------- /docs/chapter4/4.3.build-kb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter4/4.3.build-kb.md -------------------------------------------------------------------------------- /docs/chapter4/4.4.build-rag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter4/4.4.build-rag.md -------------------------------------------------------------------------------- /docs/chapter4/4.5.rag-evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter4/4.5.rag-evaluation.md -------------------------------------------------------------------------------- /docs/chapter4/4.6.graph-rag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter4/4.6.graph-rag.md -------------------------------------------------------------------------------- /docs/chapter4/4.7.homework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter4/4.7.homework.md -------------------------------------------------------------------------------- /docs/chapter5/5.1.overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter5/5.1.overview.md -------------------------------------------------------------------------------- /docs/chapter5/5.2.intent-recognition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter5/5.2.intent-recognition.md -------------------------------------------------------------------------------- /docs/chapter5/5.3.travel-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter5/5.3.travel-info.md -------------------------------------------------------------------------------- /docs/chapter5/5.4.strategy-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter5/5.4.strategy-generation.md -------------------------------------------------------------------------------- /docs/chapter5/5.5.feedback-optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter5/5.5.feedback-optimization.md -------------------------------------------------------------------------------- /docs/chapter5/5.6.knowledge-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter5/5.6.knowledge-integration.md -------------------------------------------------------------------------------- /docs/chapter5/5.7.homework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter5/5.7.homework.md -------------------------------------------------------------------------------- /docs/chapter6/6.1.data-synthesis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter6/6.1.data-synthesis.md -------------------------------------------------------------------------------- /docs/chapter6/6.2.conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/chapter6/6.2.conclusion.md -------------------------------------------------------------------------------- /docs/files/QQ2024123-225913-HD.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/files/QQ2024123-225913-HD.mp4 -------------------------------------------------------------------------------- /docs/files/example_document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/files/example_document.md -------------------------------------------------------------------------------- /docs/files/output.lin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/files/output.lin.pdf -------------------------------------------------------------------------------- /docs/files/vedio_test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/files/vedio_test.mp4 -------------------------------------------------------------------------------- /docs/files/上海3天旅游信息.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/files/上海3天旅游信息.json -------------------------------------------------------------------------------- /docs/files/成都3天旅游信息.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/files/成都3天旅游信息.json -------------------------------------------------------------------------------- /docs/files/成都3天旅游攻略.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/files/成都3天旅游攻略.html -------------------------------------------------------------------------------- /docs/files/新疆7天旅游信息.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/files/新疆7天旅游信息.json -------------------------------------------------------------------------------- /docs/images/1_990694512_171_85_3_831326966_a1eb53d929927cf19797f53a61de8fd5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/1_990694512_171_85_3_831326966_a1eb53d929927cf19797f53a61de8fd5.png -------------------------------------------------------------------------------- /docs/images/1_990694512_171_85_3_831327905_a8ddb3fbc6188131b8e144ad8455e723.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/1_990694512_171_85_3_831327905_a8ddb3fbc6188131b8e144ad8455e723.png -------------------------------------------------------------------------------- /docs/images/84cc4e45b00fce80bfebfce9734e29a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/84cc4e45b00fce80bfebfce9734e29a.png -------------------------------------------------------------------------------- /docs/images/a5021914f432051a35ff25757ce58b8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/a5021914f432051a35ff25757ce58b8.png -------------------------------------------------------------------------------- /docs/images/diagram-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/diagram-1.png -------------------------------------------------------------------------------- /docs/images/diagram-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/diagram-2.png -------------------------------------------------------------------------------- /docs/images/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/diagram.png -------------------------------------------------------------------------------- /docs/images/fdb6c5a5baad1fc445eab2101bceeff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/fdb6c5a5baad1fc445eab2101bceeff.png -------------------------------------------------------------------------------- /docs/images/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-1.png -------------------------------------------------------------------------------- /docs/images/image-10-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-10-2.png -------------------------------------------------------------------------------- /docs/images/image-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-10.png -------------------------------------------------------------------------------- /docs/images/image-11-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-11-2.png -------------------------------------------------------------------------------- /docs/images/image-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-11.png -------------------------------------------------------------------------------- /docs/images/image-12-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-12-2.png -------------------------------------------------------------------------------- /docs/images/image-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-12.png -------------------------------------------------------------------------------- /docs/images/image-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-13.png -------------------------------------------------------------------------------- /docs/images/image-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-14.png -------------------------------------------------------------------------------- /docs/images/image-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-15.png -------------------------------------------------------------------------------- /docs/images/image-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-16.png -------------------------------------------------------------------------------- /docs/images/image-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-17.png -------------------------------------------------------------------------------- /docs/images/image-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-18.png -------------------------------------------------------------------------------- /docs/images/image-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-19.png -------------------------------------------------------------------------------- /docs/images/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-2.png -------------------------------------------------------------------------------- /docs/images/image-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-20.png -------------------------------------------------------------------------------- /docs/images/image-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-21.png -------------------------------------------------------------------------------- /docs/images/image-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-22.png -------------------------------------------------------------------------------- /docs/images/image-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-23.png -------------------------------------------------------------------------------- /docs/images/image-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-24.png -------------------------------------------------------------------------------- /docs/images/image-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-25.png -------------------------------------------------------------------------------- /docs/images/image-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-26.png -------------------------------------------------------------------------------- /docs/images/image-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-27.png -------------------------------------------------------------------------------- /docs/images/image-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-28.png -------------------------------------------------------------------------------- /docs/images/image-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-29.png -------------------------------------------------------------------------------- /docs/images/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-3.png -------------------------------------------------------------------------------- /docs/images/image-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-30.png -------------------------------------------------------------------------------- /docs/images/image-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-31.png -------------------------------------------------------------------------------- /docs/images/image-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-32.png -------------------------------------------------------------------------------- /docs/images/image-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-33.png -------------------------------------------------------------------------------- /docs/images/image-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-34.png -------------------------------------------------------------------------------- /docs/images/image-35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-35.png -------------------------------------------------------------------------------- /docs/images/image-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-36.png -------------------------------------------------------------------------------- /docs/images/image-37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-37.png -------------------------------------------------------------------------------- /docs/images/image-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-38.png -------------------------------------------------------------------------------- /docs/images/image-39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-39.png -------------------------------------------------------------------------------- /docs/images/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-4.png -------------------------------------------------------------------------------- /docs/images/image-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-40.png -------------------------------------------------------------------------------- /docs/images/image-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-41.png -------------------------------------------------------------------------------- /docs/images/image-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-42.png -------------------------------------------------------------------------------- /docs/images/image-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-5-1.png -------------------------------------------------------------------------------- /docs/images/image-5-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-5-2.png -------------------------------------------------------------------------------- /docs/images/image-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-6.png -------------------------------------------------------------------------------- /docs/images/image-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-7.png -------------------------------------------------------------------------------- /docs/images/image-8-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-8-2.png -------------------------------------------------------------------------------- /docs/images/image-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-8.png -------------------------------------------------------------------------------- /docs/images/image-9-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-9-2.png -------------------------------------------------------------------------------- /docs/images/image-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image-9.png -------------------------------------------------------------------------------- /docs/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/image.png -------------------------------------------------------------------------------- /docs/images/{0F412F01-E241-4951-BAE0-820EA120D544}.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/{0F412F01-E241-4951-BAE0-820EA120D544}.png -------------------------------------------------------------------------------- /docs/images/演示图片.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/演示图片.png -------------------------------------------------------------------------------- /docs/images/演示图片2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/images/演示图片2.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/handy-multi-agent/HEAD/docs/index.html --------------------------------------------------------------------------------