├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .eslintrc.json ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── azure-dev.yml │ ├── build.yaml │ └── validate-infra.yaml ├── .gitignore ├── .nvmrc ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── app ├── api │ ├── chat │ │ ├── config │ │ │ └── route.ts │ │ ├── engine │ │ │ ├── chat.ts │ │ │ ├── file-storage.ts │ │ │ ├── generate.ts │ │ │ ├── index.ts │ │ │ ├── loader.ts │ │ │ ├── queryFilter.ts │ │ │ ├── settings.ts │ │ │ ├── shared.ts │ │ │ └── tools │ │ │ │ ├── __AzureDynamicSessionTool.node--patched.ts │ │ │ │ ├── __azure-code-interpreter.ts │ │ │ │ └── index.ts │ │ ├── llamaindex │ │ │ ├── documents │ │ │ │ ├── helper.ts │ │ │ │ ├── pipeline.ts │ │ │ │ └── upload.ts │ │ │ └── streaming │ │ │ │ ├── annotations.ts │ │ │ │ ├── events.ts │ │ │ │ ├── file.ts │ │ │ │ ├── stream.ts │ │ │ │ └── suggestion.ts │ │ ├── route.ts │ │ └── upload │ │ │ └── route.ts │ └── files │ │ └── [...slug] │ │ └── route.ts ├── components │ ├── chat-section.tsx │ ├── header.tsx │ └── ui │ │ ├── README.md │ │ ├── button.tsx │ │ ├── chat │ │ ├── chat-actions.tsx │ │ ├── chat-input.tsx │ │ ├── chat-message │ │ │ ├── chat-agent-events.tsx │ │ │ ├── chat-avatar.tsx │ │ │ ├── chat-events.tsx │ │ │ ├── chat-files.tsx │ │ │ ├── chat-image.tsx │ │ │ ├── chat-sources.tsx │ │ │ ├── chat-suggestedQuestions.tsx │ │ │ ├── chat-tools.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── index.tsx │ │ │ └── markdown.tsx │ │ ├── chat-messages.tsx │ │ ├── chat.interface.ts │ │ ├── hooks │ │ │ ├── use-config.ts │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-file.ts │ │ ├── index.ts │ │ └── widgets │ │ │ ├── PdfDialog.tsx │ │ │ └── WeatherCard.tsx │ │ ├── collapsible.tsx │ │ ├── document-preview.tsx │ │ ├── drawer.tsx │ │ ├── file-uploader.tsx │ │ ├── hover-card.tsx │ │ ├── icons │ │ ├── docx.svg │ │ ├── pdf.svg │ │ ├── sheet.svg │ │ └── txt.svg │ │ ├── input.tsx │ │ ├── lib │ │ └── utils.ts │ │ ├── select.tsx │ │ └── upload-image-preview.tsx ├── favicon.ico ├── globals.css ├── layout.tsx ├── markdown.css └── page.tsx ├── azure.yaml ├── cache └── vector_store.json ├── config └── tools.json ├── docs ├── assets │ ├── llamaindex-code-interpreter-azure-dynamic-session-architecture.png │ ├── llamaindex-code-interpreter-azure-dynamic-session-full.png │ └── llamaindex-code-interpreter-azure-dynamic-session-small.png └── readme.md ├── infra ├── abbreviations.json ├── app │ └── llamaindex-azure-dynamic-session.bicep ├── main.bicep ├── main.parameters.json ├── modules │ ├── dynamic-sessions.bicep │ └── fetch-container-image.bicep ├── readme.md └── shared │ ├── apps-env.bicep │ ├── cognitive-services.bicep │ ├── dashboard-web.bicep │ ├── keyvault.bicep │ ├── monitoring.bicep │ ├── registry.bicep │ ├── security-role.bicep │ └── storage-account.bicep ├── next.config.json ├── next.config.mjs ├── package.json ├── postcss.config.js ├── prettier.config.js ├── public ├── llama.png └── sample-data │ └── gdppercap.csv ├── tailwind.config.ts ├── tsconfig.json └── webpack.config.mjs /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/azure-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/.github/workflows/azure-dev.yml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/validate-infra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/.github/workflows/validate-infra.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/README.md -------------------------------------------------------------------------------- /app/api/chat/config/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/config/route.ts -------------------------------------------------------------------------------- /app/api/chat/engine/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/engine/chat.ts -------------------------------------------------------------------------------- /app/api/chat/engine/file-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/engine/file-storage.ts -------------------------------------------------------------------------------- /app/api/chat/engine/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/engine/generate.ts -------------------------------------------------------------------------------- /app/api/chat/engine/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/engine/index.ts -------------------------------------------------------------------------------- /app/api/chat/engine/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/engine/loader.ts -------------------------------------------------------------------------------- /app/api/chat/engine/queryFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/engine/queryFilter.ts -------------------------------------------------------------------------------- /app/api/chat/engine/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/engine/settings.ts -------------------------------------------------------------------------------- /app/api/chat/engine/shared.ts: -------------------------------------------------------------------------------- 1 | export const STORAGE_CACHE_DIR = "./cache"; 2 | -------------------------------------------------------------------------------- /app/api/chat/engine/tools/__AzureDynamicSessionTool.node--patched.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/engine/tools/__AzureDynamicSessionTool.node--patched.ts -------------------------------------------------------------------------------- /app/api/chat/engine/tools/__azure-code-interpreter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/engine/tools/__azure-code-interpreter.ts -------------------------------------------------------------------------------- /app/api/chat/engine/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/engine/tools/index.ts -------------------------------------------------------------------------------- /app/api/chat/llamaindex/documents/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/llamaindex/documents/helper.ts -------------------------------------------------------------------------------- /app/api/chat/llamaindex/documents/pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/llamaindex/documents/pipeline.ts -------------------------------------------------------------------------------- /app/api/chat/llamaindex/documents/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/llamaindex/documents/upload.ts -------------------------------------------------------------------------------- /app/api/chat/llamaindex/streaming/annotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/llamaindex/streaming/annotations.ts -------------------------------------------------------------------------------- /app/api/chat/llamaindex/streaming/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/llamaindex/streaming/events.ts -------------------------------------------------------------------------------- /app/api/chat/llamaindex/streaming/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/llamaindex/streaming/file.ts -------------------------------------------------------------------------------- /app/api/chat/llamaindex/streaming/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/llamaindex/streaming/stream.ts -------------------------------------------------------------------------------- /app/api/chat/llamaindex/streaming/suggestion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/llamaindex/streaming/suggestion.ts -------------------------------------------------------------------------------- /app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/route.ts -------------------------------------------------------------------------------- /app/api/chat/upload/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/chat/upload/route.ts -------------------------------------------------------------------------------- /app/api/files/[...slug]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/api/files/[...slug]/route.ts -------------------------------------------------------------------------------- /app/components/chat-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/chat-section.tsx -------------------------------------------------------------------------------- /app/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/header.tsx -------------------------------------------------------------------------------- /app/components/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/README.md -------------------------------------------------------------------------------- /app/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/button.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/chat-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/chat-actions.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/chat-input.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/chat-message/chat-agent-events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/chat-message/chat-agent-events.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/chat-message/chat-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/chat-message/chat-avatar.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/chat-message/chat-events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/chat-message/chat-events.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/chat-message/chat-files.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/chat-message/chat-files.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/chat-message/chat-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/chat-message/chat-image.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/chat-message/chat-sources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/chat-message/chat-sources.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/chat-message/chat-suggestedQuestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/chat-message/chat-suggestedQuestions.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/chat-message/chat-tools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/chat-message/chat-tools.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/chat-message/codeblock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/chat-message/codeblock.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/chat-message/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/chat-message/index.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/chat-message/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/chat-message/markdown.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/chat-messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/chat-messages.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/chat.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/chat.interface.ts -------------------------------------------------------------------------------- /app/components/ui/chat/hooks/use-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/hooks/use-config.ts -------------------------------------------------------------------------------- /app/components/ui/chat/hooks/use-copy-to-clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/hooks/use-copy-to-clipboard.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/hooks/use-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/hooks/use-file.ts -------------------------------------------------------------------------------- /app/components/ui/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/index.ts -------------------------------------------------------------------------------- /app/components/ui/chat/widgets/PdfDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/widgets/PdfDialog.tsx -------------------------------------------------------------------------------- /app/components/ui/chat/widgets/WeatherCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/chat/widgets/WeatherCard.tsx -------------------------------------------------------------------------------- /app/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /app/components/ui/document-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/document-preview.tsx -------------------------------------------------------------------------------- /app/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/drawer.tsx -------------------------------------------------------------------------------- /app/components/ui/file-uploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/file-uploader.tsx -------------------------------------------------------------------------------- /app/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /app/components/ui/icons/docx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/icons/docx.svg -------------------------------------------------------------------------------- /app/components/ui/icons/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/icons/pdf.svg -------------------------------------------------------------------------------- /app/components/ui/icons/sheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/icons/sheet.svg -------------------------------------------------------------------------------- /app/components/ui/icons/txt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/icons/txt.svg -------------------------------------------------------------------------------- /app/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/input.tsx -------------------------------------------------------------------------------- /app/components/ui/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/lib/utils.ts -------------------------------------------------------------------------------- /app/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/select.tsx -------------------------------------------------------------------------------- /app/components/ui/upload-image-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/components/ui/upload-image-preview.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/markdown.css -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/app/page.tsx -------------------------------------------------------------------------------- /azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/azure.yaml -------------------------------------------------------------------------------- /cache/vector_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/cache/vector_store.json -------------------------------------------------------------------------------- /config/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/config/tools.json -------------------------------------------------------------------------------- /docs/assets/llamaindex-code-interpreter-azure-dynamic-session-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/docs/assets/llamaindex-code-interpreter-azure-dynamic-session-architecture.png -------------------------------------------------------------------------------- /docs/assets/llamaindex-code-interpreter-azure-dynamic-session-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/docs/assets/llamaindex-code-interpreter-azure-dynamic-session-full.png -------------------------------------------------------------------------------- /docs/assets/llamaindex-code-interpreter-azure-dynamic-session-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/docs/assets/llamaindex-code-interpreter-azure-dynamic-session-small.png -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /infra/abbreviations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/infra/abbreviations.json -------------------------------------------------------------------------------- /infra/app/llamaindex-azure-dynamic-session.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/infra/app/llamaindex-azure-dynamic-session.bicep -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/infra/main.parameters.json -------------------------------------------------------------------------------- /infra/modules/dynamic-sessions.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/infra/modules/dynamic-sessions.bicep -------------------------------------------------------------------------------- /infra/modules/fetch-container-image.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/infra/modules/fetch-container-image.bicep -------------------------------------------------------------------------------- /infra/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/infra/readme.md -------------------------------------------------------------------------------- /infra/shared/apps-env.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/infra/shared/apps-env.bicep -------------------------------------------------------------------------------- /infra/shared/cognitive-services.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/infra/shared/cognitive-services.bicep -------------------------------------------------------------------------------- /infra/shared/dashboard-web.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/infra/shared/dashboard-web.bicep -------------------------------------------------------------------------------- /infra/shared/keyvault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/infra/shared/keyvault.bicep -------------------------------------------------------------------------------- /infra/shared/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/infra/shared/monitoring.bicep -------------------------------------------------------------------------------- /infra/shared/registry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/infra/shared/registry.bicep -------------------------------------------------------------------------------- /infra/shared/security-role.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/infra/shared/security-role.bicep -------------------------------------------------------------------------------- /infra/shared/storage-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/infra/shared/storage-account.bicep -------------------------------------------------------------------------------- /next.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/next.config.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/llama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/public/llama.png -------------------------------------------------------------------------------- /public/sample-data/gdppercap.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/public/sample-data/gdppercap.csv -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/llama-index-azure-code-interpreter/HEAD/webpack.config.mjs --------------------------------------------------------------------------------