├── .codespellignore ├── .env.example ├── .github └── workflows │ ├── integration-tests.yml │ └── unit-tests.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── langgraph.json ├── pyproject.toml ├── src └── agent │ ├── __init__.py │ └── graph.py ├── static └── studio_ui.png ├── tests ├── conftest.py ├── integration_tests │ ├── __init__.py │ └── test_graph.py └── unit_tests │ ├── __init__.py │ └── test_configuration.py └── uv.lock /.codespellignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/.github/workflows/integration-tests.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/README.md -------------------------------------------------------------------------------- /langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/langgraph.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/src/agent/__init__.py -------------------------------------------------------------------------------- /src/agent/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/src/agent/graph.py -------------------------------------------------------------------------------- /static/studio_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/static/studio_ui.png -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integration_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/tests/integration_tests/__init__.py -------------------------------------------------------------------------------- /tests/integration_tests/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/tests/integration_tests/test_graph.py -------------------------------------------------------------------------------- /tests/unit_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/tests/unit_tests/__init__.py -------------------------------------------------------------------------------- /tests/unit_tests/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/tests/unit_tests/test_configuration.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/new-langgraph-project/HEAD/uv.lock --------------------------------------------------------------------------------