├── .gitattributes ├── .gitignore ├── .project ├── configpacks └── spec.yaml ├── LICENSE.txt ├── README.md ├── apt.txt ├── code ├── .gitkeep ├── chain_server │ ├── __init__.py │ ├── chains.py │ ├── chat_templates.py │ ├── configuration.py │ ├── configuration_wizard.py │ ├── nvcf_llm.py │ ├── server.py │ └── trt_llm.py ├── chatui │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── assets │ │ ├── __init__.py │ │ ├── kaizen-theme.css │ │ └── kaizen-theme.json │ ├── chat_client.py │ ├── configuration.py │ ├── configuration_wizard.py │ ├── pages │ │ ├── __init__.py │ │ ├── converse.py │ │ ├── info.py │ │ ├── kb.py │ │ └── utils.py │ └── static │ │ ├── 404.html │ │ ├── _next │ │ └── static │ │ │ ├── WuNGAl0x4o1D5HqLxhHMt │ │ │ ├── _buildManifest.js │ │ │ └── _ssgManifest.js │ │ │ ├── chunks │ │ │ ├── 78-a36dca5d49fafb86.js │ │ │ ├── framework-7a7e500878b44665.js │ │ │ ├── main-92011a1a7f336a6f.js │ │ │ ├── pages │ │ │ │ ├── _app-f21c0780e30f5eb6.js │ │ │ │ ├── _app-f55c3b932a623280.js │ │ │ │ ├── _error-54de1933a164a1ff.js │ │ │ │ ├── converse-39686323b565eff0.js │ │ │ │ ├── converse-61880f01babd873a.js │ │ │ │ ├── index-1a1d31dae38463f7.js │ │ │ │ ├── index-6a3f286eb0986c10.js │ │ │ │ ├── kb-cf0d102293dc0a74.js │ │ │ │ └── tuning-0b7bb1111c2d2a56.js │ │ │ ├── polyfills-78c92fac7aa8fdd8.js │ │ │ └── webpack-5146130448d8adf7.js │ │ │ ├── css │ │ │ ├── 7636246223312442.css │ │ │ └── 98b512633409f7e1.css │ │ │ └── s7oUSppGTRWsY8BXJmxYB │ │ │ ├── _buildManifest.js │ │ │ └── _ssgManifest.js │ │ ├── architecture.png │ │ ├── built.png │ │ ├── chat.png │ │ ├── clone.png │ │ ├── cloud.gif │ │ ├── converse.html │ │ ├── debug-chat.png │ │ ├── desktop-app.png │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── jupyter.png │ │ ├── kb.html │ │ ├── local-ms.gif │ │ ├── local.gif │ │ ├── next.svg │ │ ├── remote-ms.gif │ │ └── vercel.svg └── scripts │ ├── check-database.sh │ ├── clear-docs.sh │ ├── deprecated │ ├── local-nim-configs │ │ ├── prefetch-nim.sh │ │ ├── preflight.sh │ │ ├── start-local-nim.sh │ │ └── stop-local-nim.sh │ ├── rag-health.sh │ ├── rag-start.sh │ └── rag-stop.sh │ ├── download-local.sh │ ├── helpers │ ├── docs.py │ ├── empty-docs.py │ ├── setup.py │ └── upload-docs.py │ ├── rag-consolidated.sh │ ├── start-local.sh │ ├── stop-local.sh │ └── upload-docs.sh ├── compose.yaml ├── data ├── .gitkeep └── documents │ └── .gitkeep ├── postBuild.bash ├── preBuild.bash ├── requirements.txt └── variables.env /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/.gitignore -------------------------------------------------------------------------------- /.project/configpacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/.project/configpacks -------------------------------------------------------------------------------- /.project/spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/.project/spec.yaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/README.md -------------------------------------------------------------------------------- /apt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/apt.txt -------------------------------------------------------------------------------- /code/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/chain_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chain_server/__init__.py -------------------------------------------------------------------------------- /code/chain_server/chains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chain_server/chains.py -------------------------------------------------------------------------------- /code/chain_server/chat_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chain_server/chat_templates.py -------------------------------------------------------------------------------- /code/chain_server/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chain_server/configuration.py -------------------------------------------------------------------------------- /code/chain_server/configuration_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chain_server/configuration_wizard.py -------------------------------------------------------------------------------- /code/chain_server/nvcf_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chain_server/nvcf_llm.py -------------------------------------------------------------------------------- /code/chain_server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chain_server/server.py -------------------------------------------------------------------------------- /code/chain_server/trt_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chain_server/trt_llm.py -------------------------------------------------------------------------------- /code/chatui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/__init__.py -------------------------------------------------------------------------------- /code/chatui/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/__main__.py -------------------------------------------------------------------------------- /code/chatui/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/api.py -------------------------------------------------------------------------------- /code/chatui/assets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/assets/__init__.py -------------------------------------------------------------------------------- /code/chatui/assets/kaizen-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/assets/kaizen-theme.css -------------------------------------------------------------------------------- /code/chatui/assets/kaizen-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/assets/kaizen-theme.json -------------------------------------------------------------------------------- /code/chatui/chat_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/chat_client.py -------------------------------------------------------------------------------- /code/chatui/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/configuration.py -------------------------------------------------------------------------------- /code/chatui/configuration_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/configuration_wizard.py -------------------------------------------------------------------------------- /code/chatui/pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/pages/__init__.py -------------------------------------------------------------------------------- /code/chatui/pages/converse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/pages/converse.py -------------------------------------------------------------------------------- /code/chatui/pages/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/pages/info.py -------------------------------------------------------------------------------- /code/chatui/pages/kb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/pages/kb.py -------------------------------------------------------------------------------- /code/chatui/pages/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/pages/utils.py -------------------------------------------------------------------------------- /code/chatui/static/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/404.html -------------------------------------------------------------------------------- /code/chatui/static/_next/static/WuNGAl0x4o1D5HqLxhHMt/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/WuNGAl0x4o1D5HqLxhHMt/_buildManifest.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/WuNGAl0x4o1D5HqLxhHMt/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/WuNGAl0x4o1D5HqLxhHMt/_ssgManifest.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/chunks/78-a36dca5d49fafb86.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/chunks/78-a36dca5d49fafb86.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/chunks/framework-7a7e500878b44665.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/chunks/framework-7a7e500878b44665.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/chunks/main-92011a1a7f336a6f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/chunks/main-92011a1a7f336a6f.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/chunks/pages/_app-f21c0780e30f5eb6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/chunks/pages/_app-f21c0780e30f5eb6.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/chunks/pages/_app-f55c3b932a623280.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/chunks/pages/_app-f55c3b932a623280.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/chunks/pages/_error-54de1933a164a1ff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/chunks/pages/_error-54de1933a164a1ff.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/chunks/pages/converse-39686323b565eff0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/chunks/pages/converse-39686323b565eff0.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/chunks/pages/converse-61880f01babd873a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/chunks/pages/converse-61880f01babd873a.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/chunks/pages/index-1a1d31dae38463f7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/chunks/pages/index-1a1d31dae38463f7.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/chunks/pages/index-6a3f286eb0986c10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/chunks/pages/index-6a3f286eb0986c10.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/chunks/pages/kb-cf0d102293dc0a74.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/chunks/pages/kb-cf0d102293dc0a74.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/chunks/pages/tuning-0b7bb1111c2d2a56.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/chunks/pages/tuning-0b7bb1111c2d2a56.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/chunks/webpack-5146130448d8adf7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/chunks/webpack-5146130448d8adf7.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/css/7636246223312442.css: -------------------------------------------------------------------------------- 1 | #__next,[data-testid=kui-theme],body,html{height:100%} -------------------------------------------------------------------------------- /code/chatui/static/_next/static/css/98b512633409f7e1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/css/98b512633409f7e1.css -------------------------------------------------------------------------------- /code/chatui/static/_next/static/s7oUSppGTRWsY8BXJmxYB/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/s7oUSppGTRWsY8BXJmxYB/_buildManifest.js -------------------------------------------------------------------------------- /code/chatui/static/_next/static/s7oUSppGTRWsY8BXJmxYB/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/_next/static/s7oUSppGTRWsY8BXJmxYB/_ssgManifest.js -------------------------------------------------------------------------------- /code/chatui/static/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/architecture.png -------------------------------------------------------------------------------- /code/chatui/static/built.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/built.png -------------------------------------------------------------------------------- /code/chatui/static/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/chat.png -------------------------------------------------------------------------------- /code/chatui/static/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/clone.png -------------------------------------------------------------------------------- /code/chatui/static/cloud.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/cloud.gif -------------------------------------------------------------------------------- /code/chatui/static/converse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/converse.html -------------------------------------------------------------------------------- /code/chatui/static/debug-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/debug-chat.png -------------------------------------------------------------------------------- /code/chatui/static/desktop-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/desktop-app.png -------------------------------------------------------------------------------- /code/chatui/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/favicon.ico -------------------------------------------------------------------------------- /code/chatui/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/index.html -------------------------------------------------------------------------------- /code/chatui/static/jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/jupyter.png -------------------------------------------------------------------------------- /code/chatui/static/kb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/kb.html -------------------------------------------------------------------------------- /code/chatui/static/local-ms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/local-ms.gif -------------------------------------------------------------------------------- /code/chatui/static/local.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/local.gif -------------------------------------------------------------------------------- /code/chatui/static/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/next.svg -------------------------------------------------------------------------------- /code/chatui/static/remote-ms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/remote-ms.gif -------------------------------------------------------------------------------- /code/chatui/static/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/chatui/static/vercel.svg -------------------------------------------------------------------------------- /code/scripts/check-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/check-database.sh -------------------------------------------------------------------------------- /code/scripts/clear-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/clear-docs.sh -------------------------------------------------------------------------------- /code/scripts/deprecated/local-nim-configs/prefetch-nim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/deprecated/local-nim-configs/prefetch-nim.sh -------------------------------------------------------------------------------- /code/scripts/deprecated/local-nim-configs/preflight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/deprecated/local-nim-configs/preflight.sh -------------------------------------------------------------------------------- /code/scripts/deprecated/local-nim-configs/start-local-nim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/deprecated/local-nim-configs/start-local-nim.sh -------------------------------------------------------------------------------- /code/scripts/deprecated/local-nim-configs/stop-local-nim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/deprecated/local-nim-configs/stop-local-nim.sh -------------------------------------------------------------------------------- /code/scripts/deprecated/rag-health.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/deprecated/rag-health.sh -------------------------------------------------------------------------------- /code/scripts/deprecated/rag-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/deprecated/rag-start.sh -------------------------------------------------------------------------------- /code/scripts/deprecated/rag-stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/deprecated/rag-stop.sh -------------------------------------------------------------------------------- /code/scripts/download-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/download-local.sh -------------------------------------------------------------------------------- /code/scripts/helpers/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/helpers/docs.py -------------------------------------------------------------------------------- /code/scripts/helpers/empty-docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/helpers/empty-docs.py -------------------------------------------------------------------------------- /code/scripts/helpers/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/helpers/setup.py -------------------------------------------------------------------------------- /code/scripts/helpers/upload-docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/helpers/upload-docs.py -------------------------------------------------------------------------------- /code/scripts/rag-consolidated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/rag-consolidated.sh -------------------------------------------------------------------------------- /code/scripts/start-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/start-local.sh -------------------------------------------------------------------------------- /code/scripts/stop-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/stop-local.sh -------------------------------------------------------------------------------- /code/scripts/upload-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/code/scripts/upload-docs.sh -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/compose.yaml -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/documents/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /postBuild.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/postBuild.bash -------------------------------------------------------------------------------- /preBuild.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/preBuild.bash -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/requirements.txt -------------------------------------------------------------------------------- /variables.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA/workbench-example-hybrid-rag/HEAD/variables.env --------------------------------------------------------------------------------