├── .codespellignore ├── .env.example ├── .github └── workflows │ ├── integration-tests.yml │ └── unit-tests.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── langgraph.json ├── pyproject.toml ├── src └── react_agent │ ├── __init__.py │ ├── context.py │ ├── graph.py │ ├── prompts.py │ ├── state.py │ ├── tools.py │ └── utils.py ├── static └── studio_ui.png ├── tests ├── cassettes │ └── 103fe67e-a040-4e4e-aadb-b20a7057f904.yaml ├── 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/react-agent/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/.github/workflows/integration-tests.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/README.md -------------------------------------------------------------------------------- /langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/langgraph.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/react_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/src/react_agent/__init__.py -------------------------------------------------------------------------------- /src/react_agent/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/src/react_agent/context.py -------------------------------------------------------------------------------- /src/react_agent/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/src/react_agent/graph.py -------------------------------------------------------------------------------- /src/react_agent/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/src/react_agent/prompts.py -------------------------------------------------------------------------------- /src/react_agent/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/src/react_agent/state.py -------------------------------------------------------------------------------- /src/react_agent/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/src/react_agent/tools.py -------------------------------------------------------------------------------- /src/react_agent/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/src/react_agent/utils.py -------------------------------------------------------------------------------- /static/studio_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/static/studio_ui.png -------------------------------------------------------------------------------- /tests/cassettes/103fe67e-a040-4e4e-aadb-b20a7057f904.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/tests/cassettes/103fe67e-a040-4e4e-aadb-b20a7057f904.yaml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integration_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/tests/integration_tests/__init__.py -------------------------------------------------------------------------------- /tests/integration_tests/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/tests/integration_tests/test_graph.py -------------------------------------------------------------------------------- /tests/unit_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/tests/unit_tests/__init__.py -------------------------------------------------------------------------------- /tests/unit_tests/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/tests/unit_tests/test_configuration.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/react-agent/HEAD/uv.lock --------------------------------------------------------------------------------