├── .dockerignore ├── .env.example ├── .eslintrc.cjs ├── .gitignore ├── LICENSE ├── README.md ├── jest.config.js ├── langgraph.json ├── package.json ├── src └── retrieval_graph │ ├── configuration.ts │ ├── graph.ts │ ├── index_graph.ts │ ├── prompts.ts │ ├── retrieval.ts │ ├── state.ts │ ├── tests │ ├── graph.int.test.ts │ └── graph.test.ts │ └── utils.ts ├── static └── studio_ui.png ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/jest.config.js -------------------------------------------------------------------------------- /langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/langgraph.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/package.json -------------------------------------------------------------------------------- /src/retrieval_graph/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/src/retrieval_graph/configuration.ts -------------------------------------------------------------------------------- /src/retrieval_graph/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/src/retrieval_graph/graph.ts -------------------------------------------------------------------------------- /src/retrieval_graph/index_graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/src/retrieval_graph/index_graph.ts -------------------------------------------------------------------------------- /src/retrieval_graph/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/src/retrieval_graph/prompts.ts -------------------------------------------------------------------------------- /src/retrieval_graph/retrieval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/src/retrieval_graph/retrieval.ts -------------------------------------------------------------------------------- /src/retrieval_graph/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/src/retrieval_graph/state.ts -------------------------------------------------------------------------------- /src/retrieval_graph/tests/graph.int.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/src/retrieval_graph/tests/graph.int.test.ts -------------------------------------------------------------------------------- /src/retrieval_graph/tests/graph.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/src/retrieval_graph/tests/graph.test.ts -------------------------------------------------------------------------------- /src/retrieval_graph/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/src/retrieval_graph/utils.ts -------------------------------------------------------------------------------- /static/studio_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/static/studio_ui.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langchain-ai/retrieval-agent-template-js/HEAD/yarn.lock --------------------------------------------------------------------------------