├── .containerignore ├── .envrc ├── .gitignore ├── .npmrc ├── .nvmrc ├── .png ├── .prettierrc ├── CHANGELOG.md ├── CLAUDE.md ├── Containerfile ├── LICENSE ├── README.md ├── backend ├── .env.example ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierignore ├── CLAUDE.md ├── generator-functions.tmp ├── jest.config.js ├── package-lock.json ├── package.json ├── src │ ├── __tests__ │ │ ├── routes │ │ │ └── api │ │ │ │ ├── buckets │ │ │ │ └── index.test.ts │ │ │ │ ├── local │ │ │ │ └── index.test.ts │ │ │ │ ├── objects │ │ │ │ └── index.test.ts │ │ │ │ ├── settings │ │ │ │ └── index.test.ts │ │ │ │ └── transfer │ │ │ │ ├── index.test.ts │ │ │ │ └── integration.test.ts │ │ ├── sample.test.ts │ │ └── utils │ │ │ ├── config.test.ts │ │ │ ├── directoryListing.test.ts │ │ │ ├── fileValidation.test.ts │ │ │ ├── fixtures.ts │ │ │ ├── localStorage.test.ts │ │ │ ├── quotaManager.test.ts │ │ │ ├── rateLimit.test.ts │ │ │ ├── testHelpers.test.ts │ │ │ ├── testHelpers.ts │ │ │ ├── transferQueue.test.ts │ │ │ └── validation.test.ts │ ├── app.ts │ ├── config │ │ └── cors.ts │ ├── plugins │ │ └── auth.ts │ ├── routes │ │ ├── api │ │ │ ├── buckets │ │ │ │ └── index.ts │ │ │ ├── disclaimer │ │ │ │ └── index.ts │ │ │ ├── local │ │ │ │ └── index.ts │ │ │ ├── not-found.ts │ │ │ ├── objects │ │ │ │ └── index.ts │ │ │ ├── settings │ │ │ │ └── index.ts │ │ │ └── transfer │ │ │ │ └── index.ts │ │ └── root.ts │ ├── server.ts │ ├── typeHelpers.ts │ ├── types.ts │ ├── types │ │ └── fastify.d.ts │ └── utils │ │ ├── auditLog.ts │ │ ├── config.ts │ │ ├── constants.ts │ │ ├── directoryListing.ts │ │ ├── dotenv.ts │ │ ├── encoding.ts │ │ ├── errorLogging.ts │ │ ├── fileValidation.ts │ │ ├── localStorage.ts │ │ ├── logAccess.ts │ │ ├── memoryProfiler.ts │ │ ├── quotaManager.ts │ │ ├── rateLimit.ts │ │ ├── streamHelpers.ts │ │ ├── transferQueue.ts │ │ └── validation.ts ├── tsconfig.json └── tsconfig.prod.json ├── docs ├── README.md ├── architecture │ ├── README.md │ ├── backend-architecture.md │ ├── data-flow.md │ ├── frontend-architecture.md │ ├── monorepo-structure.md │ ├── overview.md │ ├── system-architecture.md │ └── technology-stack.md ├── deployment │ ├── configuration.md │ └── deployment.md ├── development │ ├── README.md │ ├── development-workflow.md │ └── pf6-guide │ │ ├── README.md │ │ ├── charts │ │ └── README.md │ │ ├── chatbot │ │ └── README.md │ │ ├── component-groups │ │ └── README.md │ │ ├── components │ │ ├── README.md │ │ ├── data-display │ │ │ ├── README.md │ │ │ └── table.md │ │ └── layout │ │ │ └── README.md │ │ ├── guidelines │ │ ├── README.md │ │ ├── component-architecture.md │ │ ├── migration-codemods.md │ │ └── styling-standards.md │ │ ├── resources │ │ ├── README.md │ │ └── external-links.md │ │ ├── setup │ │ ├── README.md │ │ ├── development-environment.md │ │ └── quick-start.md │ │ ├── testing-patterns │ │ ├── README.md │ │ ├── context-dependent-components.md │ │ ├── dropdowns-pagination.md │ │ ├── modals.md │ │ └── switch-components.md │ │ └── troubleshooting │ │ ├── README.md │ │ └── common-issues.md ├── features │ ├── README.md │ ├── folder-copy-remaining-tasks.md │ ├── folder-copy-support.md │ ├── folder-copy-tasks │ │ ├── README.md │ │ ├── task-1.1-recursive-directory-listing.md │ │ ├── task-1.2-update-transfer-interface.md │ │ ├── task-1.3-directory-expansion-logic.md │ │ ├── task-1.4-directory-creation.md │ │ ├── task-1.5-empty-directory-handling.md │ │ ├── task-1.7-conflict-check-endpoint.md │ │ ├── task-1.8-streaming-implementation.md │ │ ├── task-2.1-directory-selection-ui.md │ │ ├── task-2.2-storage-service-interface.md │ │ ├── task-2.3-transfer-action-component.md │ │ ├── task-2.4-pass-file-listing.md │ │ ├── task-2.5-large-folder-warning.md │ │ ├── task-2.6-progress-display.md │ │ └── task-3.2-conflict-ui.md │ ├── pvc-storage-support.md │ └── tasks │ │ ├── phase-0-test-infrastructure.md │ │ ├── phase-1.1-transfer-queue.md │ │ ├── phase-1.2-configuration.md │ │ ├── phase-1.3-local-storage-utils.md │ │ ├── phase-1.4-local-storage-routes.md │ │ ├── phase-1.5-transfer-routes.md │ │ ├── phase-1.6-huggingface-integration.md │ │ ├── phase-2.1-storage-service.md │ │ ├── phase-2.2-buckets-component.md │ │ ├── phase-2.3-object-browser.md │ │ ├── phase-2.4-transfer-components.md │ │ ├── phase-2.5-huggingface-ui.md │ │ ├── phase-3.1-backend-tests.md │ │ ├── phase-3.2-frontend-tests.md │ │ └── phase-3.3-documentation.md ├── img-usage │ ├── settings-concurrent-transfers.png │ ├── settings-huggingface.png │ ├── settings-max-files-per-page.png │ ├── settings-overview.png │ ├── settings-proxy.png │ ├── settings-s3.png │ ├── storage-browse-create-folder.png │ ├── storage-browse-file-preview.png │ ├── storage-browse-hf-import-dialog.png │ ├── storage-browse-hf-import-progress.png │ ├── storage-browse-pvc-create-folder.png │ ├── storage-browse-pvc-hf-import-progress.png │ ├── storage-browse-pvc-hf-import.png │ ├── storage-browse-pvc-model-contents.png │ ├── storage-browse-pvc-model-imported.png │ ├── storage-browse-pvc-root.png │ ├── storage-browse-s3-all-content.png │ ├── storage-browse-s3-models-folder.png │ ├── storage-browse-s3-root.png │ ├── storage-browse-s3-select-folder.png │ ├── storage-browse-transfer-complete.png │ ├── storage-browse-transfer-dialog.png │ ├── storage-browse-transfer-progress.png │ ├── storage-browse-upload-multiple-files.png │ ├── storage-browse-upload-multiple-progress.png │ ├── storage-browse-upload-single-file.png │ ├── storage-browse-upload-single-progress.png │ ├── storage-management.png │ └── vram-estimator.png ├── implementation-plans │ ├── objectbrowser-phase1-foundation.md │ ├── objectbrowser-phase2-locations.md │ ├── objectbrowser-phase3-state-refactor.md │ ├── objectbrowser-phase3.5-cleanup.md │ ├── objectbrowser-phase4-operations.md │ ├── objectbrowser-phase5-integration.md │ ├── objectbrowser-unified-storage-integration-v2.md │ └── objectbrowser-unified-storage-integration.md └── usage.md ├── frontend ├── .editorconfig ├── .env.example ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CLAUDE.md ├── LICENSE ├── README.md ├── __mocks__ │ ├── fileMock.js │ └── styleMock.js ├── babel.config.js ├── dr-surge.js ├── frontend │ ├── package-lock.json │ └── package.json ├── jest.config.js ├── package-lock.json ├── package.json ├── public │ └── locales │ │ └── en │ │ └── translation.json ├── scripts │ └── dotenv.js ├── src │ ├── __tests__ │ │ ├── app │ │ │ ├── __snapshots__ │ │ │ │ └── app.test.tsx.snap │ │ │ ├── app.test.tsx │ │ │ └── components │ │ │ │ └── Transfer │ │ │ │ ├── ConflictResolutionModal.test.tsx │ │ │ │ ├── DestinationPicker.test.tsx │ │ │ │ ├── TransferAction.test.tsx │ │ │ │ └── TransferProgress.test.tsx │ │ ├── services │ │ │ └── storageService.test.ts │ │ ├── setup.ts │ │ └── utils │ │ │ ├── fixtures.ts │ │ │ ├── format.test.ts │ │ │ ├── testHelpers.test.tsx │ │ │ └── testHelpers.tsx │ ├── app │ │ ├── app.css │ │ ├── assets │ │ │ ├── bgimages │ │ │ │ ├── Logo-Red_Hat-OpenShift_AI-A-Reverse-RGB.svg │ │ │ │ ├── default-user.svg │ │ │ │ ├── fork-white.svg │ │ │ │ ├── fork.svg │ │ │ │ ├── github-mark-white.svg │ │ │ │ ├── github-mark.svg │ │ │ │ ├── hf-logo.svg │ │ │ │ ├── odh-logo-dark-theme.svg │ │ │ │ ├── odh-logo-light-theme.svg │ │ │ │ ├── star-white.svg │ │ │ │ └── star.svg │ │ │ └── images │ │ │ │ └── rhoai-favicon.svg │ │ ├── components │ │ │ ├── AppLayout │ │ │ │ └── AppLayout.tsx │ │ │ ├── Buckets │ │ │ │ └── Buckets.tsx │ │ │ ├── DocumentRenderer │ │ │ │ └── DocumentRenderer.tsx │ │ │ ├── NotFound │ │ │ │ └── NotFound.tsx │ │ │ ├── Settings │ │ │ │ └── Settings.tsx │ │ │ ├── StorageBrowser │ │ │ │ ├── StorageBrowser.tsx │ │ │ │ ├── objectBrowserFunctions.ts │ │ │ │ └── storageBrowserTypes.ts │ │ │ ├── Transfer │ │ │ │ ├── ConflictResolutionModal.tsx │ │ │ │ ├── DestinationPicker.tsx │ │ │ │ ├── TransferAction.tsx │ │ │ │ ├── TransferProgress.tsx │ │ │ │ └── index.ts │ │ │ ├── UserContext │ │ │ │ └── UserContext.tsx │ │ │ └── VramEstimator │ │ │ │ ├── VramEstimator.tsx │ │ │ │ ├── _components │ │ │ │ └── StackedBarChart.tsx │ │ │ │ ├── _interfaces │ │ │ │ └── index.ts │ │ │ │ ├── _lib │ │ │ │ └── index.ts │ │ │ │ └── configurations.ts │ │ ├── config.tsx │ │ ├── index.tsx │ │ ├── routes.tsx │ │ ├── services │ │ │ └── storageService.ts │ │ └── utils │ │ │ ├── emitter.ts │ │ │ ├── encoding.ts │ │ │ ├── format.ts │ │ │ └── monaco-config.ts │ ├── favicon.svg │ ├── i18n │ │ └── config.ts │ ├── index.html │ ├── index.tsx │ ├── types │ │ └── window.d.ts │ └── typings.d.ts ├── stylePaths.js ├── tsconfig.json ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js ├── img ├── settings-s3.png ├── storage-browse-file-preview.png ├── storage-browse-hf-import-progress.png ├── storage-browse-transfer-dialog.png ├── storage-management.png └── vram-estimator.png ├── package.json └── scripts └── dotenv.js /.containerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/.containerignore -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/.envrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock = true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18.20.8 -------------------------------------------------------------------------------- /.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/.png -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/Containerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/README.md -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/.eslintignore: -------------------------------------------------------------------------------- 1 | package.json 2 | jest.config.js 3 | -------------------------------------------------------------------------------- /backend/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/.eslintrc -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | cache 2 | dist 3 | node_modules 4 | -------------------------------------------------------------------------------- /backend/.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /backend/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/CLAUDE.md -------------------------------------------------------------------------------- /backend/generator-functions.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/generator-functions.tmp -------------------------------------------------------------------------------- /backend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/jest.config.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/src/__tests__/routes/api/buckets/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/routes/api/buckets/index.test.ts -------------------------------------------------------------------------------- /backend/src/__tests__/routes/api/local/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/routes/api/local/index.test.ts -------------------------------------------------------------------------------- /backend/src/__tests__/routes/api/objects/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/routes/api/objects/index.test.ts -------------------------------------------------------------------------------- /backend/src/__tests__/routes/api/settings/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/routes/api/settings/index.test.ts -------------------------------------------------------------------------------- /backend/src/__tests__/routes/api/transfer/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/routes/api/transfer/index.test.ts -------------------------------------------------------------------------------- /backend/src/__tests__/routes/api/transfer/integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/routes/api/transfer/integration.test.ts -------------------------------------------------------------------------------- /backend/src/__tests__/sample.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/sample.test.ts -------------------------------------------------------------------------------- /backend/src/__tests__/utils/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/utils/config.test.ts -------------------------------------------------------------------------------- /backend/src/__tests__/utils/directoryListing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/utils/directoryListing.test.ts -------------------------------------------------------------------------------- /backend/src/__tests__/utils/fileValidation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/utils/fileValidation.test.ts -------------------------------------------------------------------------------- /backend/src/__tests__/utils/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/utils/fixtures.ts -------------------------------------------------------------------------------- /backend/src/__tests__/utils/localStorage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/utils/localStorage.test.ts -------------------------------------------------------------------------------- /backend/src/__tests__/utils/quotaManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/utils/quotaManager.test.ts -------------------------------------------------------------------------------- /backend/src/__tests__/utils/rateLimit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/utils/rateLimit.test.ts -------------------------------------------------------------------------------- /backend/src/__tests__/utils/testHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/utils/testHelpers.test.ts -------------------------------------------------------------------------------- /backend/src/__tests__/utils/testHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/utils/testHelpers.ts -------------------------------------------------------------------------------- /backend/src/__tests__/utils/transferQueue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/utils/transferQueue.test.ts -------------------------------------------------------------------------------- /backend/src/__tests__/utils/validation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/__tests__/utils/validation.test.ts -------------------------------------------------------------------------------- /backend/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/app.ts -------------------------------------------------------------------------------- /backend/src/config/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/config/cors.ts -------------------------------------------------------------------------------- /backend/src/plugins/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/plugins/auth.ts -------------------------------------------------------------------------------- /backend/src/routes/api/buckets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/routes/api/buckets/index.ts -------------------------------------------------------------------------------- /backend/src/routes/api/disclaimer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/routes/api/disclaimer/index.ts -------------------------------------------------------------------------------- /backend/src/routes/api/local/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/routes/api/local/index.ts -------------------------------------------------------------------------------- /backend/src/routes/api/not-found.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/routes/api/not-found.ts -------------------------------------------------------------------------------- /backend/src/routes/api/objects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/routes/api/objects/index.ts -------------------------------------------------------------------------------- /backend/src/routes/api/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/routes/api/settings/index.ts -------------------------------------------------------------------------------- /backend/src/routes/api/transfer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/routes/api/transfer/index.ts -------------------------------------------------------------------------------- /backend/src/routes/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/routes/root.ts -------------------------------------------------------------------------------- /backend/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/server.ts -------------------------------------------------------------------------------- /backend/src/typeHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/typeHelpers.ts -------------------------------------------------------------------------------- /backend/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/types.ts -------------------------------------------------------------------------------- /backend/src/types/fastify.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/types/fastify.d.ts -------------------------------------------------------------------------------- /backend/src/utils/auditLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/auditLog.ts -------------------------------------------------------------------------------- /backend/src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/config.ts -------------------------------------------------------------------------------- /backend/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/constants.ts -------------------------------------------------------------------------------- /backend/src/utils/directoryListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/directoryListing.ts -------------------------------------------------------------------------------- /backend/src/utils/dotenv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/dotenv.ts -------------------------------------------------------------------------------- /backend/src/utils/encoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/encoding.ts -------------------------------------------------------------------------------- /backend/src/utils/errorLogging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/errorLogging.ts -------------------------------------------------------------------------------- /backend/src/utils/fileValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/fileValidation.ts -------------------------------------------------------------------------------- /backend/src/utils/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/localStorage.ts -------------------------------------------------------------------------------- /backend/src/utils/logAccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/logAccess.ts -------------------------------------------------------------------------------- /backend/src/utils/memoryProfiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/memoryProfiler.ts -------------------------------------------------------------------------------- /backend/src/utils/quotaManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/quotaManager.ts -------------------------------------------------------------------------------- /backend/src/utils/rateLimit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/rateLimit.ts -------------------------------------------------------------------------------- /backend/src/utils/streamHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/streamHelpers.ts -------------------------------------------------------------------------------- /backend/src/utils/transferQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/transferQueue.ts -------------------------------------------------------------------------------- /backend/src/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/src/utils/validation.ts -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /backend/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/backend/tsconfig.prod.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/architecture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/architecture/README.md -------------------------------------------------------------------------------- /docs/architecture/backend-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/architecture/backend-architecture.md -------------------------------------------------------------------------------- /docs/architecture/data-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/architecture/data-flow.md -------------------------------------------------------------------------------- /docs/architecture/frontend-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/architecture/frontend-architecture.md -------------------------------------------------------------------------------- /docs/architecture/monorepo-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/architecture/monorepo-structure.md -------------------------------------------------------------------------------- /docs/architecture/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/architecture/overview.md -------------------------------------------------------------------------------- /docs/architecture/system-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/architecture/system-architecture.md -------------------------------------------------------------------------------- /docs/architecture/technology-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/architecture/technology-stack.md -------------------------------------------------------------------------------- /docs/deployment/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/deployment/configuration.md -------------------------------------------------------------------------------- /docs/deployment/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/deployment/deployment.md -------------------------------------------------------------------------------- /docs/development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/README.md -------------------------------------------------------------------------------- /docs/development/development-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/development-workflow.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/README.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/charts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/charts/README.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/chatbot/README.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/component-groups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/component-groups/README.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/components/README.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/components/data-display/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/components/data-display/README.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/components/data-display/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/components/data-display/table.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/components/layout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/components/layout/README.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/guidelines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/guidelines/README.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/guidelines/component-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/guidelines/component-architecture.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/guidelines/migration-codemods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/guidelines/migration-codemods.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/guidelines/styling-standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/guidelines/styling-standards.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/resources/README.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/resources/external-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/resources/external-links.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/setup/README.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/setup/development-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/setup/development-environment.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/setup/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/setup/quick-start.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/testing-patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/testing-patterns/README.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/testing-patterns/context-dependent-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/testing-patterns/context-dependent-components.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/testing-patterns/dropdowns-pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/testing-patterns/dropdowns-pagination.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/testing-patterns/modals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/testing-patterns/modals.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/testing-patterns/switch-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/testing-patterns/switch-components.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/troubleshooting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/troubleshooting/README.md -------------------------------------------------------------------------------- /docs/development/pf6-guide/troubleshooting/common-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/development/pf6-guide/troubleshooting/common-issues.md -------------------------------------------------------------------------------- /docs/features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/README.md -------------------------------------------------------------------------------- /docs/features/folder-copy-remaining-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-remaining-tasks.md -------------------------------------------------------------------------------- /docs/features/folder-copy-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-support.md -------------------------------------------------------------------------------- /docs/features/folder-copy-tasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-tasks/README.md -------------------------------------------------------------------------------- /docs/features/folder-copy-tasks/task-1.1-recursive-directory-listing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-tasks/task-1.1-recursive-directory-listing.md -------------------------------------------------------------------------------- /docs/features/folder-copy-tasks/task-1.2-update-transfer-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-tasks/task-1.2-update-transfer-interface.md -------------------------------------------------------------------------------- /docs/features/folder-copy-tasks/task-1.3-directory-expansion-logic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-tasks/task-1.3-directory-expansion-logic.md -------------------------------------------------------------------------------- /docs/features/folder-copy-tasks/task-1.4-directory-creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-tasks/task-1.4-directory-creation.md -------------------------------------------------------------------------------- /docs/features/folder-copy-tasks/task-1.5-empty-directory-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-tasks/task-1.5-empty-directory-handling.md -------------------------------------------------------------------------------- /docs/features/folder-copy-tasks/task-1.7-conflict-check-endpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-tasks/task-1.7-conflict-check-endpoint.md -------------------------------------------------------------------------------- /docs/features/folder-copy-tasks/task-1.8-streaming-implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-tasks/task-1.8-streaming-implementation.md -------------------------------------------------------------------------------- /docs/features/folder-copy-tasks/task-2.1-directory-selection-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-tasks/task-2.1-directory-selection-ui.md -------------------------------------------------------------------------------- /docs/features/folder-copy-tasks/task-2.2-storage-service-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-tasks/task-2.2-storage-service-interface.md -------------------------------------------------------------------------------- /docs/features/folder-copy-tasks/task-2.3-transfer-action-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-tasks/task-2.3-transfer-action-component.md -------------------------------------------------------------------------------- /docs/features/folder-copy-tasks/task-2.4-pass-file-listing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-tasks/task-2.4-pass-file-listing.md -------------------------------------------------------------------------------- /docs/features/folder-copy-tasks/task-2.5-large-folder-warning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-tasks/task-2.5-large-folder-warning.md -------------------------------------------------------------------------------- /docs/features/folder-copy-tasks/task-2.6-progress-display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-tasks/task-2.6-progress-display.md -------------------------------------------------------------------------------- /docs/features/folder-copy-tasks/task-3.2-conflict-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/folder-copy-tasks/task-3.2-conflict-ui.md -------------------------------------------------------------------------------- /docs/features/pvc-storage-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/pvc-storage-support.md -------------------------------------------------------------------------------- /docs/features/tasks/phase-0-test-infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/tasks/phase-0-test-infrastructure.md -------------------------------------------------------------------------------- /docs/features/tasks/phase-1.1-transfer-queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/tasks/phase-1.1-transfer-queue.md -------------------------------------------------------------------------------- /docs/features/tasks/phase-1.2-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/tasks/phase-1.2-configuration.md -------------------------------------------------------------------------------- /docs/features/tasks/phase-1.3-local-storage-utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/tasks/phase-1.3-local-storage-utils.md -------------------------------------------------------------------------------- /docs/features/tasks/phase-1.4-local-storage-routes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/tasks/phase-1.4-local-storage-routes.md -------------------------------------------------------------------------------- /docs/features/tasks/phase-1.5-transfer-routes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/tasks/phase-1.5-transfer-routes.md -------------------------------------------------------------------------------- /docs/features/tasks/phase-1.6-huggingface-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/tasks/phase-1.6-huggingface-integration.md -------------------------------------------------------------------------------- /docs/features/tasks/phase-2.1-storage-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/tasks/phase-2.1-storage-service.md -------------------------------------------------------------------------------- /docs/features/tasks/phase-2.2-buckets-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/tasks/phase-2.2-buckets-component.md -------------------------------------------------------------------------------- /docs/features/tasks/phase-2.3-object-browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/tasks/phase-2.3-object-browser.md -------------------------------------------------------------------------------- /docs/features/tasks/phase-2.4-transfer-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/tasks/phase-2.4-transfer-components.md -------------------------------------------------------------------------------- /docs/features/tasks/phase-2.5-huggingface-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/tasks/phase-2.5-huggingface-ui.md -------------------------------------------------------------------------------- /docs/features/tasks/phase-3.1-backend-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/tasks/phase-3.1-backend-tests.md -------------------------------------------------------------------------------- /docs/features/tasks/phase-3.2-frontend-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/tasks/phase-3.2-frontend-tests.md -------------------------------------------------------------------------------- /docs/features/tasks/phase-3.3-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/features/tasks/phase-3.3-documentation.md -------------------------------------------------------------------------------- /docs/img-usage/settings-concurrent-transfers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/settings-concurrent-transfers.png -------------------------------------------------------------------------------- /docs/img-usage/settings-huggingface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/settings-huggingface.png -------------------------------------------------------------------------------- /docs/img-usage/settings-max-files-per-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/settings-max-files-per-page.png -------------------------------------------------------------------------------- /docs/img-usage/settings-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/settings-overview.png -------------------------------------------------------------------------------- /docs/img-usage/settings-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/settings-proxy.png -------------------------------------------------------------------------------- /docs/img-usage/settings-s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/settings-s3.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-create-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-create-folder.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-file-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-file-preview.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-hf-import-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-hf-import-dialog.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-hf-import-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-hf-import-progress.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-pvc-create-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-pvc-create-folder.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-pvc-hf-import-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-pvc-hf-import-progress.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-pvc-hf-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-pvc-hf-import.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-pvc-model-contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-pvc-model-contents.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-pvc-model-imported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-pvc-model-imported.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-pvc-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-pvc-root.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-s3-all-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-s3-all-content.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-s3-models-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-s3-models-folder.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-s3-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-s3-root.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-s3-select-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-s3-select-folder.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-transfer-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-transfer-complete.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-transfer-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-transfer-dialog.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-transfer-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-transfer-progress.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-upload-multiple-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-upload-multiple-files.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-upload-multiple-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-upload-multiple-progress.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-upload-single-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-upload-single-file.png -------------------------------------------------------------------------------- /docs/img-usage/storage-browse-upload-single-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-browse-upload-single-progress.png -------------------------------------------------------------------------------- /docs/img-usage/storage-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/storage-management.png -------------------------------------------------------------------------------- /docs/img-usage/vram-estimator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/img-usage/vram-estimator.png -------------------------------------------------------------------------------- /docs/implementation-plans/objectbrowser-phase1-foundation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/implementation-plans/objectbrowser-phase1-foundation.md -------------------------------------------------------------------------------- /docs/implementation-plans/objectbrowser-phase2-locations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/implementation-plans/objectbrowser-phase2-locations.md -------------------------------------------------------------------------------- /docs/implementation-plans/objectbrowser-phase3-state-refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/implementation-plans/objectbrowser-phase3-state-refactor.md -------------------------------------------------------------------------------- /docs/implementation-plans/objectbrowser-phase3.5-cleanup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/implementation-plans/objectbrowser-phase3.5-cleanup.md -------------------------------------------------------------------------------- /docs/implementation-plans/objectbrowser-phase4-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/implementation-plans/objectbrowser-phase4-operations.md -------------------------------------------------------------------------------- /docs/implementation-plans/objectbrowser-phase5-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/implementation-plans/objectbrowser-phase5-integration.md -------------------------------------------------------------------------------- /docs/implementation-plans/objectbrowser-unified-storage-integration-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/implementation-plans/objectbrowser-unified-storage-integration-v2.md -------------------------------------------------------------------------------- /docs/implementation-plans/objectbrowser-unified-storage-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/implementation-plans/objectbrowser-unified-storage-integration.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/docs/usage.md -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.env.example: -------------------------------------------------------------------------------- 1 | BACKEND_API_URL=http://127.0.0.1:5000/api -------------------------------------------------------------------------------- /frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/.eslintrc.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/CLAUDE.md -------------------------------------------------------------------------------- /frontend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/LICENSE -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- 1 | # S3 Workbench 2 | 3 | -------------------------------------------------------------------------------- /frontend/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /frontend/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /frontend/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/babel.config.js -------------------------------------------------------------------------------- /frontend/dr-surge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/dr-surge.js -------------------------------------------------------------------------------- /frontend/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/frontend/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/jest.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/public/locales/en/translation.json -------------------------------------------------------------------------------- /frontend/scripts/dotenv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/scripts/dotenv.js -------------------------------------------------------------------------------- /frontend/src/__tests__/app/__snapshots__/app.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/__tests__/app/__snapshots__/app.test.tsx.snap -------------------------------------------------------------------------------- /frontend/src/__tests__/app/app.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/__tests__/app/app.test.tsx -------------------------------------------------------------------------------- /frontend/src/__tests__/app/components/Transfer/ConflictResolutionModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/__tests__/app/components/Transfer/ConflictResolutionModal.test.tsx -------------------------------------------------------------------------------- /frontend/src/__tests__/app/components/Transfer/DestinationPicker.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/__tests__/app/components/Transfer/DestinationPicker.test.tsx -------------------------------------------------------------------------------- /frontend/src/__tests__/app/components/Transfer/TransferAction.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/__tests__/app/components/Transfer/TransferAction.test.tsx -------------------------------------------------------------------------------- /frontend/src/__tests__/app/components/Transfer/TransferProgress.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/__tests__/app/components/Transfer/TransferProgress.test.tsx -------------------------------------------------------------------------------- /frontend/src/__tests__/services/storageService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/__tests__/services/storageService.test.ts -------------------------------------------------------------------------------- /frontend/src/__tests__/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/__tests__/setup.ts -------------------------------------------------------------------------------- /frontend/src/__tests__/utils/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/__tests__/utils/fixtures.ts -------------------------------------------------------------------------------- /frontend/src/__tests__/utils/format.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/__tests__/utils/format.test.ts -------------------------------------------------------------------------------- /frontend/src/__tests__/utils/testHelpers.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/__tests__/utils/testHelpers.test.tsx -------------------------------------------------------------------------------- /frontend/src/__tests__/utils/testHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/__tests__/utils/testHelpers.tsx -------------------------------------------------------------------------------- /frontend/src/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/app.css -------------------------------------------------------------------------------- /frontend/src/app/assets/bgimages/Logo-Red_Hat-OpenShift_AI-A-Reverse-RGB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/assets/bgimages/Logo-Red_Hat-OpenShift_AI-A-Reverse-RGB.svg -------------------------------------------------------------------------------- /frontend/src/app/assets/bgimages/default-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/assets/bgimages/default-user.svg -------------------------------------------------------------------------------- /frontend/src/app/assets/bgimages/fork-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/assets/bgimages/fork-white.svg -------------------------------------------------------------------------------- /frontend/src/app/assets/bgimages/fork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/assets/bgimages/fork.svg -------------------------------------------------------------------------------- /frontend/src/app/assets/bgimages/github-mark-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/assets/bgimages/github-mark-white.svg -------------------------------------------------------------------------------- /frontend/src/app/assets/bgimages/github-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/assets/bgimages/github-mark.svg -------------------------------------------------------------------------------- /frontend/src/app/assets/bgimages/hf-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/assets/bgimages/hf-logo.svg -------------------------------------------------------------------------------- /frontend/src/app/assets/bgimages/odh-logo-dark-theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/assets/bgimages/odh-logo-dark-theme.svg -------------------------------------------------------------------------------- /frontend/src/app/assets/bgimages/odh-logo-light-theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/assets/bgimages/odh-logo-light-theme.svg -------------------------------------------------------------------------------- /frontend/src/app/assets/bgimages/star-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/assets/bgimages/star-white.svg -------------------------------------------------------------------------------- /frontend/src/app/assets/bgimages/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/assets/bgimages/star.svg -------------------------------------------------------------------------------- /frontend/src/app/assets/images/rhoai-favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/assets/images/rhoai-favicon.svg -------------------------------------------------------------------------------- /frontend/src/app/components/AppLayout/AppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/AppLayout/AppLayout.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/Buckets/Buckets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/Buckets/Buckets.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/DocumentRenderer/DocumentRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/DocumentRenderer/DocumentRenderer.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/NotFound/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/NotFound/NotFound.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/Settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/Settings/Settings.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/StorageBrowser/StorageBrowser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/StorageBrowser/StorageBrowser.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/StorageBrowser/objectBrowserFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/StorageBrowser/objectBrowserFunctions.ts -------------------------------------------------------------------------------- /frontend/src/app/components/StorageBrowser/storageBrowserTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/StorageBrowser/storageBrowserTypes.ts -------------------------------------------------------------------------------- /frontend/src/app/components/Transfer/ConflictResolutionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/Transfer/ConflictResolutionModal.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/Transfer/DestinationPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/Transfer/DestinationPicker.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/Transfer/TransferAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/Transfer/TransferAction.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/Transfer/TransferProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/Transfer/TransferProgress.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/Transfer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/Transfer/index.ts -------------------------------------------------------------------------------- /frontend/src/app/components/UserContext/UserContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/UserContext/UserContext.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/VramEstimator/VramEstimator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/VramEstimator/VramEstimator.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/VramEstimator/_components/StackedBarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/VramEstimator/_components/StackedBarChart.tsx -------------------------------------------------------------------------------- /frontend/src/app/components/VramEstimator/_interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/VramEstimator/_interfaces/index.ts -------------------------------------------------------------------------------- /frontend/src/app/components/VramEstimator/_lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/VramEstimator/_lib/index.ts -------------------------------------------------------------------------------- /frontend/src/app/components/VramEstimator/configurations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/components/VramEstimator/configurations.ts -------------------------------------------------------------------------------- /frontend/src/app/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/config.tsx -------------------------------------------------------------------------------- /frontend/src/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/index.tsx -------------------------------------------------------------------------------- /frontend/src/app/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/routes.tsx -------------------------------------------------------------------------------- /frontend/src/app/services/storageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/services/storageService.ts -------------------------------------------------------------------------------- /frontend/src/app/utils/emitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/utils/emitter.ts -------------------------------------------------------------------------------- /frontend/src/app/utils/encoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/utils/encoding.ts -------------------------------------------------------------------------------- /frontend/src/app/utils/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/utils/format.ts -------------------------------------------------------------------------------- /frontend/src/app/utils/monaco-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/app/utils/monaco-config.ts -------------------------------------------------------------------------------- /frontend/src/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/favicon.svg -------------------------------------------------------------------------------- /frontend/src/i18n/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/i18n/config.ts -------------------------------------------------------------------------------- /frontend/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/index.html -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/types/window.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/types/window.d.ts -------------------------------------------------------------------------------- /frontend/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/src/typings.d.ts -------------------------------------------------------------------------------- /frontend/stylePaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/stylePaths.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/webpack.common.js -------------------------------------------------------------------------------- /frontend/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/webpack.dev.js -------------------------------------------------------------------------------- /frontend/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/frontend/webpack.prod.js -------------------------------------------------------------------------------- /img/settings-s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/img/settings-s3.png -------------------------------------------------------------------------------- /img/storage-browse-file-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/img/storage-browse-file-preview.png -------------------------------------------------------------------------------- /img/storage-browse-hf-import-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/img/storage-browse-hf-import-progress.png -------------------------------------------------------------------------------- /img/storage-browse-transfer-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/img/storage-browse-transfer-dialog.png -------------------------------------------------------------------------------- /img/storage-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/img/storage-management.png -------------------------------------------------------------------------------- /img/vram-estimator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/img/vram-estimator.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/package.json -------------------------------------------------------------------------------- /scripts/dotenv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/odh-tec/HEAD/scripts/dotenv.js --------------------------------------------------------------------------------