├── .codespellignore ├── .dockerignore ├── .editorconfig ├── .env.example ├── .eslintrc.cjs ├── .gitignore ├── LICENSE ├── README.md ├── jest.config.js ├── langgraph.json ├── package.json ├── scripts └── checkLanggraphPaths.js ├── src └── agent │ ├── graph.ts │ └── state.ts ├── static ├── agent_inbox_view.png ├── interrupted_item.png └── studio_thread_result.png ├── tsconfig.json └── yarn.lock /.codespellignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/jest.config.js -------------------------------------------------------------------------------- /langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/langgraph.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/package.json -------------------------------------------------------------------------------- /scripts/checkLanggraphPaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/scripts/checkLanggraphPaths.js -------------------------------------------------------------------------------- /src/agent/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/src/agent/graph.ts -------------------------------------------------------------------------------- /src/agent/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/src/agent/state.ts -------------------------------------------------------------------------------- /static/agent_inbox_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/static/agent_inbox_view.png -------------------------------------------------------------------------------- /static/interrupted_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/static/interrupted_item.png -------------------------------------------------------------------------------- /static/studio_thread_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/static/studio_thread_result.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/agent-inbox-langgraphjs-example/HEAD/yarn.lock --------------------------------------------------------------------------------