├── .devcontainer └── devcontainer.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── code_02_XX Basic ReAct Agent in LangGraph.ipynb ├── code_03_XX Product QnA Agentic chatbot.ipynb ├── code_04_XX Orders Chatbot with custom agent.ipynb ├── code_05_XX Summary chatbot with reviewer.ipynb ├── code_06_XX Multi-agent chatbots with routing.ipynb ├── data ├── EcoSprint_Specification_Document.pdf ├── Laptop Orders.csv ├── Laptop pricing.csv ├── Laptop product descriptions.pdf └── README.md └── requirements.txt /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .tmp 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/README.md -------------------------------------------------------------------------------- /code_02_XX Basic ReAct Agent in LangGraph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/code_02_XX Basic ReAct Agent in LangGraph.ipynb -------------------------------------------------------------------------------- /code_03_XX Product QnA Agentic chatbot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/code_03_XX Product QnA Agentic chatbot.ipynb -------------------------------------------------------------------------------- /code_04_XX Orders Chatbot with custom agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/code_04_XX Orders Chatbot with custom agent.ipynb -------------------------------------------------------------------------------- /code_05_XX Summary chatbot with reviewer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/code_05_XX Summary chatbot with reviewer.ipynb -------------------------------------------------------------------------------- /code_06_XX Multi-agent chatbots with routing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/code_06_XX Multi-agent chatbots with routing.ipynb -------------------------------------------------------------------------------- /data/EcoSprint_Specification_Document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/data/EcoSprint_Specification_Document.pdf -------------------------------------------------------------------------------- /data/Laptop Orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/data/Laptop Orders.csv -------------------------------------------------------------------------------- /data/Laptop pricing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/data/Laptop pricing.csv -------------------------------------------------------------------------------- /data/Laptop product descriptions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/data/Laptop product descriptions.pdf -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/build-ai-agents-and-chatbots-with-langgraph-2021112/HEAD/requirements.txt --------------------------------------------------------------------------------