├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── db └── profile.json ├── graph.png ├── poetry.lock ├── pyproject.toml ├── static └── logo.png └── support_agent ├── __init__.py ├── consts.py ├── graph.py ├── nodes ├── __init__.py ├── assistant_node.py ├── safe_agent.py └── verify_information.py ├── state.py └── tools ├── __init__.py └── safe_tools.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/app.py -------------------------------------------------------------------------------- /db/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/db/profile.json -------------------------------------------------------------------------------- /graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/graph.png -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/pyproject.toml -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/static/logo.png -------------------------------------------------------------------------------- /support_agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support_agent/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/support_agent/consts.py -------------------------------------------------------------------------------- /support_agent/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/support_agent/graph.py -------------------------------------------------------------------------------- /support_agent/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support_agent/nodes/assistant_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/support_agent/nodes/assistant_node.py -------------------------------------------------------------------------------- /support_agent/nodes/safe_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/support_agent/nodes/safe_agent.py -------------------------------------------------------------------------------- /support_agent/nodes/verify_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/support_agent/nodes/verify_information.py -------------------------------------------------------------------------------- /support_agent/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/support_agent/state.py -------------------------------------------------------------------------------- /support_agent/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support_agent/tools/safe_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarco177/langgraph-customer-support/HEAD/support_agent/tools/safe_tools.py --------------------------------------------------------------------------------