├── .github ├── .spellcheck.yaml ├── .wordlist.txt ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── publish.yml │ └── spelling_action.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── Containerfile ├── backend │ ├── Pipfile │ ├── Pipfile.lock │ ├── app.py │ ├── app_config.py │ ├── app_logging.py │ ├── data_classes.py │ ├── db_utils.py │ ├── public │ │ └── .folder_keep │ ├── requirements.txt │ └── startdev.sh ├── claim-images │ └── policy.json ├── claimdb │ ├── 01-claimdb_creation.sql │ ├── 02-claims_schema_creation.sql │ ├── 03-claims_table_creation.sql │ ├── 04-original_images_table_creation.sql │ ├── 05-processed_images_table_creation.sql │ └── 06-create_base_claims.sql ├── frontend │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── .storybook │ │ ├── main.ts │ │ └── preview.ts │ ├── LICENSE │ ├── README.md │ ├── __mocks__ │ │ ├── fileMock.js │ │ └── styleMock.js │ ├── babel.config.js │ ├── dr-surge.js │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── scripts │ │ └── dotenv.js │ ├── src │ │ ├── app │ │ │ ├── __snapshots__ │ │ │ │ └── app.test.tsx.snap │ │ │ ├── app.css │ │ │ ├── app.test.tsx │ │ │ ├── assets │ │ │ │ ├── bgimages │ │ │ │ │ ├── Logo-Red_Hat-OpenShift_AI-A-Reverse-RGB.svg │ │ │ │ │ └── car1.jpg │ │ │ │ └── images │ │ │ │ │ ├── car1.jpg │ │ │ │ │ ├── car2.jpg │ │ │ │ │ ├── car3.jpg │ │ │ │ │ ├── new_car1.png │ │ │ │ │ ├── new_car2.png │ │ │ │ │ └── new_car3.png │ │ │ ├── components │ │ │ │ ├── AppLayout │ │ │ │ │ └── AppLayout.tsx │ │ │ │ ├── ClaimDetail │ │ │ │ │ └── ClaimDetail.tsx │ │ │ │ ├── ClaimsList │ │ │ │ │ └── ClaimsList.tsx │ │ │ │ ├── ImageCarousel │ │ │ │ │ └── ImageCarousel.tsx │ │ │ │ ├── NewApp │ │ │ │ │ └── NewApp.tsx │ │ │ │ ├── NotFound │ │ │ │ │ └── NotFound.tsx │ │ │ │ └── OriginalApp │ │ │ │ │ └── OriginalApp.tsx │ │ │ ├── config.tsx │ │ │ ├── index.tsx │ │ │ ├── routes.tsx │ │ │ └── utils │ │ │ │ └── useDocumentTitle.ts │ │ ├── favicon.png │ │ ├── favicon.svg │ │ ├── index.html │ │ ├── index.tsx │ │ └── typings.d.ts │ ├── stylePaths.js │ ├── tsconfig.json │ ├── webpack.common.js │ ├── webpack.dev.js │ └── webpack.prod.js ├── package-lock.json ├── package.json └── start-dev.sh ├── bootstrap ├── applicationset │ └── applicationset-bootstrap.yaml ├── bootstrap.md ├── ic-rhoai-configuration │ ├── accelerator-profile.yaml │ ├── ceph-rbd-set-default.yaml │ ├── gp3-remove-default.yaml │ ├── images-puller.yaml │ ├── kustomization.yaml │ ├── odhdashboardconfig.yaml │ ├── workbench-imagestream.yaml │ └── workbench-vscode-is.yaml ├── ic-shared-database │ ├── db-init-job.yaml │ ├── deployment.yaml │ ├── images │ │ ├── original_images │ │ │ ├── car0.jpg │ │ │ ├── car1.jpg │ │ │ ├── car2.jpg │ │ │ ├── car3.jpg │ │ │ ├── car5.jpg │ │ │ └── car6.jpg │ │ └── processed_images │ │ │ ├── car0-processed.jpg │ │ │ ├── car1-processed.jpg │ │ │ ├── car2-processed.jpg │ │ │ ├── car3-processed.jpg │ │ │ ├── car5-processed.jpg │ │ │ └── car6-processed.jpg │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── populate-images.yaml │ ├── pvc.yaml │ ├── secret-minio.yaml │ ├── secret.yaml │ ├── service.yaml │ └── sql-script-configmap.yaml ├── ic-shared-img-det │ ├── add-model-job.yaml │ ├── create-data-connection.yaml │ ├── kustomization.yaml │ ├── model.yaml │ ├── pinger.yaml │ ├── project.yaml │ ├── runtime.yaml │ └── setup-serviceaccount.yaml ├── ic-shared-llm │ ├── deployment-flant5.yaml │ ├── deployment.yaml │ ├── fix-odf-config.yaml │ ├── kustomization.yaml │ ├── namespace.yaml │ ├── pvc.yaml │ ├── service-flant5.yaml │ ├── service.yaml │ └── token.yaml ├── ic-shared-minio │ ├── create-buckets.yaml │ ├── create-data-connection.yml │ ├── create-root-user-job.yml │ ├── deployment.yml │ ├── kustomization.yml │ ├── namespace.yml │ ├── pvc.yml │ ├── route.yml │ ├── service.yml │ └── serviceaccount.yml └── workbench-image │ ├── Containerfile │ ├── NGC-DL-CONTAINER-LICENSE │ ├── Pipfile │ ├── Pipfile.lock │ ├── README.md │ ├── cuda.repo-x86_64 │ ├── etc │ ├── jupyter_notebook_config.py │ └── jupyter_server_config.py │ ├── os-ide │ └── os-packages.txt │ ├── requirements.txt │ ├── runtime-images │ ├── cuda-datascience-c9s-py311.json │ ├── cuda-pytorch-c9s-py311.json │ ├── cuda-tensorflow-c9s-py311.json │ ├── datascience-c9s-py311.json │ ├── datascience-ubi9-py39.json │ ├── pytorch-ubi9-py39.json │ ├── r-c9s-py311.json │ ├── spark-c9s-py311.json │ ├── tensorflow-ubi9-py39.json │ └── ubi9-py39.json │ ├── setup-elyra.sh │ ├── start-notebook.sh │ └── utils │ ├── component_runtime.json │ ├── jupyter_elyra_config.py │ ├── kfp_authentication.patch │ ├── pipeline-flow.svg │ ├── process.sh │ ├── processor_kfp.patch │ └── test_notebook.ipynb ├── content ├── antora.yml ├── docs-ui │ └── ui-bundle.zip ├── lib │ ├── remote-include-processor.js │ └── tab-block.js ├── modules │ └── ROOT │ │ ├── assets │ │ └── images │ │ │ ├── 01 │ │ │ ├── proto-accident-grading.png │ │ │ ├── proto-car-recog.png │ │ │ ├── proto-claims-processing-app.png │ │ │ ├── proto-info-extract.png │ │ │ ├── proto-sentiment-analysis.png │ │ │ └── proto-summary.png │ │ │ ├── 02 │ │ │ ├── 02-01-access-rhoai.png │ │ │ ├── 02-01-login-scary.png │ │ │ ├── 02-01-login1.png │ │ │ ├── 02-01-login2.png │ │ │ ├── 02-01-rhoai-front-page.png │ │ │ ├── 02-02-accept.png │ │ │ ├── 02-02-add-dc.png │ │ │ ├── 02-02-create-project.png │ │ │ ├── 02-02-ds-proj-nav.png │ │ │ ├── 02-02-jupyter.png │ │ │ ├── 02-02-launch-workbench-01.png │ │ │ ├── 02-02-pipelineserver01.png │ │ │ ├── 02-02-pipelineserver02.png │ │ │ ├── 02-02-pipelineserver03.png │ │ │ ├── 02-03-create-wb.png │ │ │ ├── 02-03-open-link.png │ │ │ ├── 02-04-restart-and-run.png │ │ │ ├── 02-04-restart-kernel.png │ │ │ ├── data-connection.png │ │ │ ├── git-clone-1.png │ │ │ ├── git-clone-2.png │ │ │ └── ic-eng-diag.drawio.svg │ │ │ ├── 03 │ │ │ ├── 03-06-dailyrun.png │ │ │ ├── 03-07-run-pipeline-ok.png │ │ │ ├── 07-create-run.png │ │ │ └── 07-elyra-pipeline.png │ │ │ ├── 04 │ │ │ ├── add-model-server-config.png │ │ │ ├── add-model-server.png │ │ │ ├── best-model.png │ │ │ ├── box-identified-cars.png │ │ │ ├── cluster-storage.png │ │ │ ├── data-connection.png │ │ │ ├── deploy-a-model.png │ │ │ ├── inference-url.png │ │ │ ├── model-data-connection.png │ │ │ ├── model-deployed-success.png │ │ │ ├── model-prediction-results.png │ │ │ ├── model-retraining-summary.png │ │ │ ├── multiple-car-images.png │ │ │ ├── retrained-model-results.png │ │ │ ├── roboflow-test-images.png │ │ │ ├── sample-car-image.png │ │ │ ├── select-deploy-model.png │ │ │ └── yaml-file.png │ │ │ └── 05 │ │ │ ├── 01-copy-login-command.png │ │ │ ├── 01-oc-login.png │ │ │ ├── 01-openshift-console.png │ │ │ ├── 05-PVC-settings.png │ │ │ ├── 05-PVC.png │ │ │ ├── 05-create-pvc.png │ │ │ ├── 05-create-run.png │ │ │ ├── 05-import-pipeline-button.png │ │ │ ├── 05-imported-pipeline.png │ │ │ ├── 05-object-detection-endpoint.png │ │ │ ├── 05-open-pipeline-properties.png │ │ │ ├── 05-run-details.png │ │ │ ├── 05-run-settings-create-pipeline.png │ │ │ ├── 05-run-settings.png │ │ │ ├── app-code.png │ │ │ ├── application-architecture.drawio.svg │ │ │ ├── argocd-rollout.png │ │ │ ├── argocd-route.png │ │ │ ├── jobs-completed.png │ │ │ ├── new-app-1.png │ │ │ ├── original-app-1.png │ │ │ ├── original-app-2.png │ │ │ ├── stop-workbench.png │ │ │ ├── trust-vscode.png │ │ │ ├── update-workbench.png │ │ │ ├── vscode-image.png │ │ │ ├── web-term-1.png │ │ │ └── web-term-2.png │ │ ├── examples │ │ └── run.sh │ │ ├── gen.py │ │ ├── nav.adoc │ │ ├── pages │ │ ├── 01-01-setting-stage.adoc │ │ ├── 01-02-current-process.adoc │ │ ├── 01-03-proposed-improvements.adoc │ │ ├── 01-04-examples-from-prototype.adoc │ │ ├── 01-05-results.adoc │ │ ├── 02-01-getting-connected.adoc │ │ ├── 02-02-creating-project.adoc │ │ ├── 02-03-creating-workbench.adoc │ │ ├── 02-04-validating-env.adoc │ │ ├── 03-01-notebook-based-llm.adoc │ │ ├── 03-02-summarization.adoc │ │ ├── 03-03-information-extractions.adoc │ │ ├── 03-04-comparing-models.adoc │ │ ├── 03-05-prompt-engineering.adoc │ │ ├── 03-06-sanity-check.adoc │ │ ├── 04-01-over-approach.adoc │ │ ├── 04-02-car-recog.adoc │ │ ├── 04-03-model-retraining.adoc │ │ ├── 04-04-accident-recog.adoc │ │ ├── 04-05-model-serving.adoc │ │ ├── 05-01-application.adoc │ │ ├── 05-02-openshift-terminal.adoc │ │ ├── 05-03-web-app-deploy-application.adoc │ │ ├── 05-04-web-app-validating.adoc │ │ ├── 05-05-process-claims.adoc │ │ ├── 06-01-potential-imp-ref.adoc │ │ ├── 06-02-applicability-other.adoc │ │ ├── 07-01-end-of-lab.adoc │ │ ├── _attributes.adoc │ │ └── index.adoc │ │ └── partials │ │ └── exec_pod.adoc ├── supplemental-ui │ ├── .nojekyll │ ├── css │ │ └── site-extra.css │ ├── img │ │ └── favicon.ico │ ├── partials │ │ ├── head-meta.hbs │ │ ├── header-content.hbs │ │ ├── nav-explore.hbs │ │ └── toolbar.hbs │ └── ui.yml └── utilities │ ├── lab-build │ ├── lab-clean │ ├── lab-reload │ ├── lab-serve │ └── lab-stop ├── default-site.yml └── lab-materials ├── 02 └── 02-04-validating.ipynb ├── 03 ├── 03-01-nb-llm-example.ipynb ├── 03-02-summarization.ipynb ├── 03-03-information-extraction.ipynb ├── 03-04-comparing-models.ipynb ├── 06 │ ├── Dockerfile │ ├── README.md │ ├── example_text.txt │ ├── llm_usage.py │ ├── requirements.txt │ ├── sanity_check.pipeline │ ├── sanity_check.yaml │ ├── summarize_results.py │ ├── summary_template.txt │ ├── test_response_quality.py │ ├── test_responsetime.py │ └── test_security.py ├── claims │ ├── claim1.json │ ├── claim2.json │ └── claim3.json └── requirements.txt ├── 04 ├── 04-01-over-approach.ipynb ├── 04-02-car-recognition.ipynb ├── 04-03-model-retraining.ipynb ├── 04-04-accident-recog.ipynb ├── 04-05-model-serving.ipynb ├── README.md ├── classes.yaml ├── images │ ├── carImage0.jpg │ ├── carImage1.jpg │ ├── carImage2.jpg │ ├── carImage3.jpg │ └── carImage4.jpg ├── remote_infer.py └── requirements.txt └── 05 ├── 05-05 ├── .pipeline-envs ├── Dockerfile ├── db_utils.py ├── detect_objects.py ├── get_accident_time.py ├── get_claims.py ├── get_location.py ├── get_sentiment.py ├── llm_usage.py ├── process_claims.pipeline ├── process_claims.yaml ├── process_image.py ├── requirements.txt ├── summarize_text.py ├── templates │ ├── location_template.txt │ ├── sentiment_template.txt │ ├── summary_template.txt │ └── time_template.txt └── test_image.jpg └── app ├── db-init-job.yaml ├── deployment-app.yaml ├── deployment-db.yaml ├── kustomization.yaml ├── populate-images.yaml ├── pvc-db.yaml ├── route-app.yaml ├── secret-db.yaml ├── secret-minio.yaml ├── service-app.yaml ├── service-db.yaml └── sql-script-configmap.yaml /.github/.spellcheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/.github/.spellcheck.yaml -------------------------------------------------------------------------------- /.github/.wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/.github/.wordlist.txt -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/spelling_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/.github/workflows/spelling_action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/README.md -------------------------------------------------------------------------------- /app/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/Containerfile -------------------------------------------------------------------------------- /app/backend/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/backend/Pipfile -------------------------------------------------------------------------------- /app/backend/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/backend/Pipfile.lock -------------------------------------------------------------------------------- /app/backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/backend/app.py -------------------------------------------------------------------------------- /app/backend/app_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/backend/app_config.py -------------------------------------------------------------------------------- /app/backend/app_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/backend/app_logging.py -------------------------------------------------------------------------------- /app/backend/data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/backend/data_classes.py -------------------------------------------------------------------------------- /app/backend/db_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/backend/db_utils.py -------------------------------------------------------------------------------- /app/backend/public/.folder_keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/backend/requirements.txt -------------------------------------------------------------------------------- /app/backend/startdev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/backend/startdev.sh -------------------------------------------------------------------------------- /app/claim-images/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/claim-images/policy.json -------------------------------------------------------------------------------- /app/claimdb/01-claimdb_creation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/claimdb/01-claimdb_creation.sql -------------------------------------------------------------------------------- /app/claimdb/02-claims_schema_creation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/claimdb/02-claims_schema_creation.sql -------------------------------------------------------------------------------- /app/claimdb/03-claims_table_creation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/claimdb/03-claims_table_creation.sql -------------------------------------------------------------------------------- /app/claimdb/04-original_images_table_creation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/claimdb/04-original_images_table_creation.sql -------------------------------------------------------------------------------- /app/claimdb/05-processed_images_table_creation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/claimdb/05-processed_images_table_creation.sql -------------------------------------------------------------------------------- /app/claimdb/06-create_base_claims.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/claimdb/06-create_base_claims.sql -------------------------------------------------------------------------------- /app/frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/.editorconfig -------------------------------------------------------------------------------- /app/frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/.eslintrc.js -------------------------------------------------------------------------------- /app/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/.gitignore -------------------------------------------------------------------------------- /app/frontend/.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /app/frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/.prettierrc -------------------------------------------------------------------------------- /app/frontend/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/.storybook/main.ts -------------------------------------------------------------------------------- /app/frontend/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/.storybook/preview.ts -------------------------------------------------------------------------------- /app/frontend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/LICENSE -------------------------------------------------------------------------------- /app/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/README.md -------------------------------------------------------------------------------- /app/frontend/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /app/frontend/__mocks__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /app/frontend/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/babel.config.js -------------------------------------------------------------------------------- /app/frontend/dr-surge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/dr-surge.js -------------------------------------------------------------------------------- /app/frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/jest.config.js -------------------------------------------------------------------------------- /app/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/package-lock.json -------------------------------------------------------------------------------- /app/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/package.json -------------------------------------------------------------------------------- /app/frontend/scripts/dotenv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/scripts/dotenv.js -------------------------------------------------------------------------------- /app/frontend/src/app/__snapshots__/app.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/__snapshots__/app.test.tsx.snap -------------------------------------------------------------------------------- /app/frontend/src/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/app.css -------------------------------------------------------------------------------- /app/frontend/src/app/app.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/app.test.tsx -------------------------------------------------------------------------------- /app/frontend/src/app/assets/bgimages/Logo-Red_Hat-OpenShift_AI-A-Reverse-RGB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/assets/bgimages/Logo-Red_Hat-OpenShift_AI-A-Reverse-RGB.svg -------------------------------------------------------------------------------- /app/frontend/src/app/assets/bgimages/car1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/assets/bgimages/car1.jpg -------------------------------------------------------------------------------- /app/frontend/src/app/assets/images/car1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/assets/images/car1.jpg -------------------------------------------------------------------------------- /app/frontend/src/app/assets/images/car2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/assets/images/car2.jpg -------------------------------------------------------------------------------- /app/frontend/src/app/assets/images/car3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/assets/images/car3.jpg -------------------------------------------------------------------------------- /app/frontend/src/app/assets/images/new_car1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/assets/images/new_car1.png -------------------------------------------------------------------------------- /app/frontend/src/app/assets/images/new_car2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/assets/images/new_car2.png -------------------------------------------------------------------------------- /app/frontend/src/app/assets/images/new_car3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/assets/images/new_car3.png -------------------------------------------------------------------------------- /app/frontend/src/app/components/AppLayout/AppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/components/AppLayout/AppLayout.tsx -------------------------------------------------------------------------------- /app/frontend/src/app/components/ClaimDetail/ClaimDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/components/ClaimDetail/ClaimDetail.tsx -------------------------------------------------------------------------------- /app/frontend/src/app/components/ClaimsList/ClaimsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/components/ClaimsList/ClaimsList.tsx -------------------------------------------------------------------------------- /app/frontend/src/app/components/ImageCarousel/ImageCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/components/ImageCarousel/ImageCarousel.tsx -------------------------------------------------------------------------------- /app/frontend/src/app/components/NewApp/NewApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/components/NewApp/NewApp.tsx -------------------------------------------------------------------------------- /app/frontend/src/app/components/NotFound/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/components/NotFound/NotFound.tsx -------------------------------------------------------------------------------- /app/frontend/src/app/components/OriginalApp/OriginalApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/components/OriginalApp/OriginalApp.tsx -------------------------------------------------------------------------------- /app/frontend/src/app/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/config.tsx -------------------------------------------------------------------------------- /app/frontend/src/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/app/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/routes.tsx -------------------------------------------------------------------------------- /app/frontend/src/app/utils/useDocumentTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/app/utils/useDocumentTitle.ts -------------------------------------------------------------------------------- /app/frontend/src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/favicon.png -------------------------------------------------------------------------------- /app/frontend/src/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/favicon.svg -------------------------------------------------------------------------------- /app/frontend/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/index.html -------------------------------------------------------------------------------- /app/frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/src/typings.d.ts -------------------------------------------------------------------------------- /app/frontend/stylePaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/stylePaths.js -------------------------------------------------------------------------------- /app/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/tsconfig.json -------------------------------------------------------------------------------- /app/frontend/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/webpack.common.js -------------------------------------------------------------------------------- /app/frontend/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/webpack.dev.js -------------------------------------------------------------------------------- /app/frontend/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/frontend/webpack.prod.js -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/app/package.json -------------------------------------------------------------------------------- /app/start-dev.sh: -------------------------------------------------------------------------------- 1 | npm run dev -------------------------------------------------------------------------------- /bootstrap/applicationset/applicationset-bootstrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/applicationset/applicationset-bootstrap.yaml -------------------------------------------------------------------------------- /bootstrap/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/bootstrap.md -------------------------------------------------------------------------------- /bootstrap/ic-rhoai-configuration/accelerator-profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-rhoai-configuration/accelerator-profile.yaml -------------------------------------------------------------------------------- /bootstrap/ic-rhoai-configuration/ceph-rbd-set-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-rhoai-configuration/ceph-rbd-set-default.yaml -------------------------------------------------------------------------------- /bootstrap/ic-rhoai-configuration/gp3-remove-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-rhoai-configuration/gp3-remove-default.yaml -------------------------------------------------------------------------------- /bootstrap/ic-rhoai-configuration/images-puller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-rhoai-configuration/images-puller.yaml -------------------------------------------------------------------------------- /bootstrap/ic-rhoai-configuration/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-rhoai-configuration/kustomization.yaml -------------------------------------------------------------------------------- /bootstrap/ic-rhoai-configuration/odhdashboardconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-rhoai-configuration/odhdashboardconfig.yaml -------------------------------------------------------------------------------- /bootstrap/ic-rhoai-configuration/workbench-imagestream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-rhoai-configuration/workbench-imagestream.yaml -------------------------------------------------------------------------------- /bootstrap/ic-rhoai-configuration/workbench-vscode-is.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-rhoai-configuration/workbench-vscode-is.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/db-init-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/db-init-job.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/deployment.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/images/original_images/car0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/images/original_images/car0.jpg -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/images/original_images/car1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/images/original_images/car1.jpg -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/images/original_images/car2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/images/original_images/car2.jpg -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/images/original_images/car3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/images/original_images/car3.jpg -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/images/original_images/car5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/images/original_images/car5.jpg -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/images/original_images/car6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/images/original_images/car6.jpg -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/images/processed_images/car0-processed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/images/processed_images/car0-processed.jpg -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/images/processed_images/car1-processed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/images/processed_images/car1-processed.jpg -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/images/processed_images/car2-processed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/images/processed_images/car2-processed.jpg -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/images/processed_images/car3-processed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/images/processed_images/car3-processed.jpg -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/images/processed_images/car5-processed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/images/processed_images/car5-processed.jpg -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/images/processed_images/car6-processed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/images/processed_images/car6-processed.jpg -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/kustomization.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/namespace.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/populate-images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/populate-images.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/pvc.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/secret-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/secret-minio.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/secret.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/service.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-database/sql-script-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-database/sql-script-configmap.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-img-det/add-model-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-img-det/add-model-job.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-img-det/create-data-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-img-det/create-data-connection.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-img-det/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-img-det/kustomization.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-img-det/model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-img-det/model.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-img-det/pinger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-img-det/pinger.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-img-det/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-img-det/project.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-img-det/runtime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-img-det/runtime.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-img-det/setup-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-img-det/setup-serviceaccount.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-llm/deployment-flant5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-llm/deployment-flant5.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-llm/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-llm/deployment.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-llm/fix-odf-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-llm/fix-odf-config.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-llm/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-llm/kustomization.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-llm/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-llm/namespace.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-llm/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-llm/pvc.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-llm/service-flant5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-llm/service-flant5.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-llm/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-llm/service.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-llm/token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-llm/token.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-minio/create-buckets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-minio/create-buckets.yaml -------------------------------------------------------------------------------- /bootstrap/ic-shared-minio/create-data-connection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-minio/create-data-connection.yml -------------------------------------------------------------------------------- /bootstrap/ic-shared-minio/create-root-user-job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-minio/create-root-user-job.yml -------------------------------------------------------------------------------- /bootstrap/ic-shared-minio/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-minio/deployment.yml -------------------------------------------------------------------------------- /bootstrap/ic-shared-minio/kustomization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-minio/kustomization.yml -------------------------------------------------------------------------------- /bootstrap/ic-shared-minio/namespace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-minio/namespace.yml -------------------------------------------------------------------------------- /bootstrap/ic-shared-minio/pvc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-minio/pvc.yml -------------------------------------------------------------------------------- /bootstrap/ic-shared-minio/route.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-minio/route.yml -------------------------------------------------------------------------------- /bootstrap/ic-shared-minio/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-minio/service.yml -------------------------------------------------------------------------------- /bootstrap/ic-shared-minio/serviceaccount.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/ic-shared-minio/serviceaccount.yml -------------------------------------------------------------------------------- /bootstrap/workbench-image/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/Containerfile -------------------------------------------------------------------------------- /bootstrap/workbench-image/NGC-DL-CONTAINER-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/NGC-DL-CONTAINER-LICENSE -------------------------------------------------------------------------------- /bootstrap/workbench-image/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/Pipfile -------------------------------------------------------------------------------- /bootstrap/workbench-image/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/Pipfile.lock -------------------------------------------------------------------------------- /bootstrap/workbench-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/README.md -------------------------------------------------------------------------------- /bootstrap/workbench-image/cuda.repo-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/cuda.repo-x86_64 -------------------------------------------------------------------------------- /bootstrap/workbench-image/etc/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/etc/jupyter_notebook_config.py -------------------------------------------------------------------------------- /bootstrap/workbench-image/etc/jupyter_server_config.py: -------------------------------------------------------------------------------- 1 | c.ContentsManager.allow_hidden = True 2 | -------------------------------------------------------------------------------- /bootstrap/workbench-image/os-ide/os-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/os-ide/os-packages.txt -------------------------------------------------------------------------------- /bootstrap/workbench-image/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/requirements.txt -------------------------------------------------------------------------------- /bootstrap/workbench-image/runtime-images/cuda-datascience-c9s-py311.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/runtime-images/cuda-datascience-c9s-py311.json -------------------------------------------------------------------------------- /bootstrap/workbench-image/runtime-images/cuda-pytorch-c9s-py311.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/runtime-images/cuda-pytorch-c9s-py311.json -------------------------------------------------------------------------------- /bootstrap/workbench-image/runtime-images/cuda-tensorflow-c9s-py311.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/runtime-images/cuda-tensorflow-c9s-py311.json -------------------------------------------------------------------------------- /bootstrap/workbench-image/runtime-images/datascience-c9s-py311.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/runtime-images/datascience-c9s-py311.json -------------------------------------------------------------------------------- /bootstrap/workbench-image/runtime-images/datascience-ubi9-py39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/runtime-images/datascience-ubi9-py39.json -------------------------------------------------------------------------------- /bootstrap/workbench-image/runtime-images/pytorch-ubi9-py39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/runtime-images/pytorch-ubi9-py39.json -------------------------------------------------------------------------------- /bootstrap/workbench-image/runtime-images/r-c9s-py311.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/runtime-images/r-c9s-py311.json -------------------------------------------------------------------------------- /bootstrap/workbench-image/runtime-images/spark-c9s-py311.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/runtime-images/spark-c9s-py311.json -------------------------------------------------------------------------------- /bootstrap/workbench-image/runtime-images/tensorflow-ubi9-py39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/runtime-images/tensorflow-ubi9-py39.json -------------------------------------------------------------------------------- /bootstrap/workbench-image/runtime-images/ubi9-py39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/runtime-images/ubi9-py39.json -------------------------------------------------------------------------------- /bootstrap/workbench-image/setup-elyra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/setup-elyra.sh -------------------------------------------------------------------------------- /bootstrap/workbench-image/start-notebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/start-notebook.sh -------------------------------------------------------------------------------- /bootstrap/workbench-image/utils/component_runtime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/utils/component_runtime.json -------------------------------------------------------------------------------- /bootstrap/workbench-image/utils/jupyter_elyra_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/utils/jupyter_elyra_config.py -------------------------------------------------------------------------------- /bootstrap/workbench-image/utils/kfp_authentication.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/utils/kfp_authentication.patch -------------------------------------------------------------------------------- /bootstrap/workbench-image/utils/pipeline-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/utils/pipeline-flow.svg -------------------------------------------------------------------------------- /bootstrap/workbench-image/utils/process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/utils/process.sh -------------------------------------------------------------------------------- /bootstrap/workbench-image/utils/processor_kfp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/utils/processor_kfp.patch -------------------------------------------------------------------------------- /bootstrap/workbench-image/utils/test_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/bootstrap/workbench-image/utils/test_notebook.ipynb -------------------------------------------------------------------------------- /content/antora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/antora.yml -------------------------------------------------------------------------------- /content/docs-ui/ui-bundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/docs-ui/ui-bundle.zip -------------------------------------------------------------------------------- /content/lib/remote-include-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/lib/remote-include-processor.js -------------------------------------------------------------------------------- /content/lib/tab-block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/lib/tab-block.js -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/01/proto-accident-grading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/01/proto-accident-grading.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/01/proto-car-recog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/01/proto-car-recog.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/01/proto-claims-processing-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/01/proto-claims-processing-app.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/01/proto-info-extract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/01/proto-info-extract.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/01/proto-sentiment-analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/01/proto-sentiment-analysis.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/01/proto-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/01/proto-summary.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-01-access-rhoai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-01-access-rhoai.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-01-login-scary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-01-login-scary.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-01-login1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-01-login1.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-01-login2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-01-login2.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-01-rhoai-front-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-01-rhoai-front-page.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-02-accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-02-accept.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-02-add-dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-02-add-dc.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-02-create-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-02-create-project.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-02-ds-proj-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-02-ds-proj-nav.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-02-jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-02-jupyter.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-02-launch-workbench-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-02-launch-workbench-01.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-02-pipelineserver01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-02-pipelineserver01.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-02-pipelineserver02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-02-pipelineserver02.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-02-pipelineserver03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-02-pipelineserver03.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-03-create-wb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-03-create-wb.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-03-open-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-03-open-link.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-04-restart-and-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-04-restart-and-run.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/02-04-restart-kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/02-04-restart-kernel.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/data-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/data-connection.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/git-clone-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/git-clone-1.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/git-clone-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/git-clone-2.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/02/ic-eng-diag.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/02/ic-eng-diag.drawio.svg -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/03/03-06-dailyrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/03/03-06-dailyrun.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/03/03-07-run-pipeline-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/03/03-07-run-pipeline-ok.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/03/07-create-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/03/07-create-run.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/03/07-elyra-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/03/07-elyra-pipeline.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/add-model-server-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/add-model-server-config.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/add-model-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/add-model-server.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/best-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/best-model.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/box-identified-cars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/box-identified-cars.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/cluster-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/cluster-storage.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/data-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/data-connection.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/deploy-a-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/deploy-a-model.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/inference-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/inference-url.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/model-data-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/model-data-connection.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/model-deployed-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/model-deployed-success.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/model-prediction-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/model-prediction-results.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/model-retraining-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/model-retraining-summary.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/multiple-car-images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/multiple-car-images.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/retrained-model-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/retrained-model-results.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/roboflow-test-images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/roboflow-test-images.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/sample-car-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/sample-car-image.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/select-deploy-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/select-deploy-model.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/04/yaml-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/04/yaml-file.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/01-copy-login-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/01-copy-login-command.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/01-oc-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/01-oc-login.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/01-openshift-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/01-openshift-console.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/05-PVC-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/05-PVC-settings.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/05-PVC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/05-PVC.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/05-create-pvc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/05-create-pvc.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/05-create-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/05-create-run.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/05-import-pipeline-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/05-import-pipeline-button.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/05-imported-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/05-imported-pipeline.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/05-object-detection-endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/05-object-detection-endpoint.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/05-open-pipeline-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/05-open-pipeline-properties.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/05-run-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/05-run-details.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/05-run-settings-create-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/05-run-settings-create-pipeline.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/05-run-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/05-run-settings.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/app-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/app-code.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/application-architecture.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/application-architecture.drawio.svg -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/argocd-rollout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/argocd-rollout.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/argocd-route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/argocd-route.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/jobs-completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/jobs-completed.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/new-app-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/new-app-1.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/original-app-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/original-app-1.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/original-app-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/original-app-2.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/stop-workbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/stop-workbench.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/trust-vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/trust-vscode.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/update-workbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/update-workbench.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/vscode-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/vscode-image.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/web-term-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/web-term-1.png -------------------------------------------------------------------------------- /content/modules/ROOT/assets/images/05/web-term-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/assets/images/05/web-term-2.png -------------------------------------------------------------------------------- /content/modules/ROOT/examples/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "Hello World" -------------------------------------------------------------------------------- /content/modules/ROOT/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/gen.py -------------------------------------------------------------------------------- /content/modules/ROOT/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/nav.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/01-01-setting-stage.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/01-01-setting-stage.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/01-02-current-process.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/01-02-current-process.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/01-03-proposed-improvements.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/01-03-proposed-improvements.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/01-04-examples-from-prototype.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/01-04-examples-from-prototype.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/01-05-results.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/01-05-results.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/02-01-getting-connected.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/02-01-getting-connected.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/02-02-creating-project.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/02-02-creating-project.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/02-03-creating-workbench.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/02-03-creating-workbench.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/02-04-validating-env.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/02-04-validating-env.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/03-01-notebook-based-llm.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/03-01-notebook-based-llm.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/03-02-summarization.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/03-02-summarization.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/03-03-information-extractions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/03-03-information-extractions.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/03-04-comparing-models.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/03-04-comparing-models.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/03-05-prompt-engineering.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/03-05-prompt-engineering.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/03-06-sanity-check.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/03-06-sanity-check.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/04-01-over-approach.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/04-01-over-approach.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/04-02-car-recog.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/04-02-car-recog.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/04-03-model-retraining.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/04-03-model-retraining.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/04-04-accident-recog.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/04-04-accident-recog.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/04-05-model-serving.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/04-05-model-serving.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/05-01-application.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/05-01-application.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/05-02-openshift-terminal.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/05-02-openshift-terminal.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/05-03-web-app-deploy-application.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/05-03-web-app-deploy-application.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/05-04-web-app-validating.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/05-04-web-app-validating.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/05-05-process-claims.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/05-05-process-claims.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/06-01-potential-imp-ref.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/06-01-potential-imp-ref.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/06-02-applicability-other.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/06-02-applicability-other.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/07-01-end-of-lab.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/07-01-end-of-lab.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/_attributes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/_attributes.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/pages/index.adoc -------------------------------------------------------------------------------- /content/modules/ROOT/partials/exec_pod.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/modules/ROOT/partials/exec_pod.adoc -------------------------------------------------------------------------------- /content/supplemental-ui/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/supplemental-ui/css/site-extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/supplemental-ui/css/site-extra.css -------------------------------------------------------------------------------- /content/supplemental-ui/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/supplemental-ui/img/favicon.ico -------------------------------------------------------------------------------- /content/supplemental-ui/partials/head-meta.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/supplemental-ui/partials/head-meta.hbs -------------------------------------------------------------------------------- /content/supplemental-ui/partials/header-content.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/supplemental-ui/partials/header-content.hbs -------------------------------------------------------------------------------- /content/supplemental-ui/partials/nav-explore.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/supplemental-ui/partials/nav-explore.hbs -------------------------------------------------------------------------------- /content/supplemental-ui/partials/toolbar.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/supplemental-ui/partials/toolbar.hbs -------------------------------------------------------------------------------- /content/supplemental-ui/ui.yml: -------------------------------------------------------------------------------- 1 | static_files: 2 | - .nojekyll -------------------------------------------------------------------------------- /content/utilities/lab-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/utilities/lab-build -------------------------------------------------------------------------------- /content/utilities/lab-clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/utilities/lab-clean -------------------------------------------------------------------------------- /content/utilities/lab-reload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/utilities/lab-reload -------------------------------------------------------------------------------- /content/utilities/lab-serve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/utilities/lab-serve -------------------------------------------------------------------------------- /content/utilities/lab-stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/content/utilities/lab-stop -------------------------------------------------------------------------------- /default-site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/default-site.yml -------------------------------------------------------------------------------- /lab-materials/02/02-04-validating.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/02/02-04-validating.ipynb -------------------------------------------------------------------------------- /lab-materials/03/03-01-nb-llm-example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/03-01-nb-llm-example.ipynb -------------------------------------------------------------------------------- /lab-materials/03/03-02-summarization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/03-02-summarization.ipynb -------------------------------------------------------------------------------- /lab-materials/03/03-03-information-extraction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/03-03-information-extraction.ipynb -------------------------------------------------------------------------------- /lab-materials/03/03-04-comparing-models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/03-04-comparing-models.ipynb -------------------------------------------------------------------------------- /lab-materials/03/06/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/06/Dockerfile -------------------------------------------------------------------------------- /lab-materials/03/06/README.md: -------------------------------------------------------------------------------- 1 | # 04 2 | 3 | Instructions for how to run the sanity pipeline... -------------------------------------------------------------------------------- /lab-materials/03/06/example_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/06/example_text.txt -------------------------------------------------------------------------------- /lab-materials/03/06/llm_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/06/llm_usage.py -------------------------------------------------------------------------------- /lab-materials/03/06/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/06/requirements.txt -------------------------------------------------------------------------------- /lab-materials/03/06/sanity_check.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/06/sanity_check.pipeline -------------------------------------------------------------------------------- /lab-materials/03/06/sanity_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/06/sanity_check.yaml -------------------------------------------------------------------------------- /lab-materials/03/06/summarize_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/06/summarize_results.py -------------------------------------------------------------------------------- /lab-materials/03/06/summary_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/06/summary_template.txt -------------------------------------------------------------------------------- /lab-materials/03/06/test_response_quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/06/test_response_quality.py -------------------------------------------------------------------------------- /lab-materials/03/06/test_responsetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/06/test_responsetime.py -------------------------------------------------------------------------------- /lab-materials/03/06/test_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/06/test_security.py -------------------------------------------------------------------------------- /lab-materials/03/claims/claim1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/claims/claim1.json -------------------------------------------------------------------------------- /lab-materials/03/claims/claim2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/claims/claim2.json -------------------------------------------------------------------------------- /lab-materials/03/claims/claim3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/claims/claim3.json -------------------------------------------------------------------------------- /lab-materials/03/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/03/requirements.txt -------------------------------------------------------------------------------- /lab-materials/04/04-01-over-approach.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/04/04-01-over-approach.ipynb -------------------------------------------------------------------------------- /lab-materials/04/04-02-car-recognition.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/04/04-02-car-recognition.ipynb -------------------------------------------------------------------------------- /lab-materials/04/04-03-model-retraining.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/04/04-03-model-retraining.ipynb -------------------------------------------------------------------------------- /lab-materials/04/04-04-accident-recog.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/04/04-04-accident-recog.ipynb -------------------------------------------------------------------------------- /lab-materials/04/04-05-model-serving.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/04/04-05-model-serving.ipynb -------------------------------------------------------------------------------- /lab-materials/04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/04/README.md -------------------------------------------------------------------------------- /lab-materials/04/classes.yaml: -------------------------------------------------------------------------------- 1 | # Classes 2 | names: 3 | 0: moderate 4 | 1: severe 5 | -------------------------------------------------------------------------------- /lab-materials/04/images/carImage0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/04/images/carImage0.jpg -------------------------------------------------------------------------------- /lab-materials/04/images/carImage1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/04/images/carImage1.jpg -------------------------------------------------------------------------------- /lab-materials/04/images/carImage2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/04/images/carImage2.jpg -------------------------------------------------------------------------------- /lab-materials/04/images/carImage3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/04/images/carImage3.jpg -------------------------------------------------------------------------------- /lab-materials/04/images/carImage4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/04/images/carImage4.jpg -------------------------------------------------------------------------------- /lab-materials/04/remote_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/04/remote_infer.py -------------------------------------------------------------------------------- /lab-materials/04/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/04/requirements.txt -------------------------------------------------------------------------------- /lab-materials/05/05-05/.pipeline-envs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/.pipeline-envs -------------------------------------------------------------------------------- /lab-materials/05/05-05/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/Dockerfile -------------------------------------------------------------------------------- /lab-materials/05/05-05/db_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/db_utils.py -------------------------------------------------------------------------------- /lab-materials/05/05-05/detect_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/detect_objects.py -------------------------------------------------------------------------------- /lab-materials/05/05-05/get_accident_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/get_accident_time.py -------------------------------------------------------------------------------- /lab-materials/05/05-05/get_claims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/get_claims.py -------------------------------------------------------------------------------- /lab-materials/05/05-05/get_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/get_location.py -------------------------------------------------------------------------------- /lab-materials/05/05-05/get_sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/get_sentiment.py -------------------------------------------------------------------------------- /lab-materials/05/05-05/llm_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/llm_usage.py -------------------------------------------------------------------------------- /lab-materials/05/05-05/process_claims.pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/process_claims.pipeline -------------------------------------------------------------------------------- /lab-materials/05/05-05/process_claims.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/process_claims.yaml -------------------------------------------------------------------------------- /lab-materials/05/05-05/process_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/process_image.py -------------------------------------------------------------------------------- /lab-materials/05/05-05/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/requirements.txt -------------------------------------------------------------------------------- /lab-materials/05/05-05/summarize_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/summarize_text.py -------------------------------------------------------------------------------- /lab-materials/05/05-05/templates/location_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/templates/location_template.txt -------------------------------------------------------------------------------- /lab-materials/05/05-05/templates/sentiment_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/templates/sentiment_template.txt -------------------------------------------------------------------------------- /lab-materials/05/05-05/templates/summary_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/templates/summary_template.txt -------------------------------------------------------------------------------- /lab-materials/05/05-05/templates/time_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/templates/time_template.txt -------------------------------------------------------------------------------- /lab-materials/05/05-05/test_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/05-05/test_image.jpg -------------------------------------------------------------------------------- /lab-materials/05/app/db-init-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/app/db-init-job.yaml -------------------------------------------------------------------------------- /lab-materials/05/app/deployment-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/app/deployment-app.yaml -------------------------------------------------------------------------------- /lab-materials/05/app/deployment-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/app/deployment-db.yaml -------------------------------------------------------------------------------- /lab-materials/05/app/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/app/kustomization.yaml -------------------------------------------------------------------------------- /lab-materials/05/app/populate-images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/app/populate-images.yaml -------------------------------------------------------------------------------- /lab-materials/05/app/pvc-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/app/pvc-db.yaml -------------------------------------------------------------------------------- /lab-materials/05/app/route-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/app/route-app.yaml -------------------------------------------------------------------------------- /lab-materials/05/app/secret-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/app/secret-db.yaml -------------------------------------------------------------------------------- /lab-materials/05/app/secret-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/app/secret-minio.yaml -------------------------------------------------------------------------------- /lab-materials/05/app/service-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/app/service-app.yaml -------------------------------------------------------------------------------- /lab-materials/05/app/service-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/app/service-db.yaml -------------------------------------------------------------------------------- /lab-materials/05/app/sql-script-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rh-aiservices-bu/insurance-claim-processing/HEAD/lab-materials/05/app/sql-script-configmap.yaml --------------------------------------------------------------------------------