Skip to content

Commit 460bd2e

Browse files
committed
change repo reference
1 parent 907340c commit 460bd2e

26 files changed

+64
-64
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This repository contains the code, instructions, resources and materials associated with the Lab called **Streamlining insurance claims with OpenShift AI**.
66

7-
To consult the static version of the instructions, please use [this URL](https://rh-aiservices-bu.github.io/insurance-claim-processing/)
7+
To consult the static version of the instructions, please use [this URL](https://rh-aiservices-bu.github.io/parasol-insurance/)
88

99
If you want to participate in the creation and update of this content, please consult the sections below.
1010

app/Containerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ USER root
44

55
WORKDIR /tmp
66

7-
RUN git clone https://github.com/rh-aiservices-bu/insurance-claim-processing.git
7+
RUN git clone https://github.com/rh-aiservices-bu/parasol-insurance.git
88

99
FROM registry.access.redhat.com/ubi9/nodejs-18
1010

1111
USER root
1212

13-
COPY --from=stage /tmp/insurance-claim-processing/app/ /tmp/src
13+
COPY --from=stage /tmp/parasol-insurance/app/ /tmp/src
1414

1515
RUN chown -R 1001:0 /tmp/src
1616

app/frontend/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "insurance-claim-processing",
2+
"name": "parasol-insurance",
33
"version": "1.0.0",
44
"description": "Backend for the RAG Chatbot Patternfly.",
55
"repository": {
66
"type": "git",
7-
"url": "git+https://https://github.com/rh-aiservices-bu/insurance-claim-processing.git"
7+
"url": "git+https://https://github.com/rh-aiservices-bu/parasol-insurance.git"
88
},
9-
"homepage": "https://github.com/rh-aiservices-bu/insurance-claim-processing/README.md",
9+
"homepage": "https://github.com/rh-aiservices-bu/parasol-insurance/README.md",
1010
"bugs": {
11-
"url": "https://github.com/rh-aiservices-bu/insurance-claim-processing/issues"
11+
"url": "https://github.com/rh-aiservices-bu/parasol-insurance/issues"
1212
},
1313
"license": "MIT",
1414
"private": true,

app/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"name": "insurance-claim-processing",
2+
"name": "parasol-insurance",
33
"version": "1.0.0",
44
"description": "Insurance Claim Processing.",
55
"author": "",
66
"license": "MIT",
77
"private": true,
88
"repository": {
99
"type": "git",
10-
"url": "git+https://https://github.com/rh-aiservices-bu/insurance-claim-processing.git"
10+
"url": "git+https://https://github.com/rh-aiservices-bu/parasol-insurance.git"
1111
},
12-
"homepage": "https://github.com/rh-aiservices-bu/insurance-claim-processing/README.md",
12+
"homepage": "https://github.com/rh-aiservices-bu/parasol-insurance/README.md",
1313
"bugs": {
14-
"url": "https://github.com/rh-aiservices-bu/insurance-claim-processing/issues"
14+
"url": "https://github.com/rh-aiservices-bu/parasol-insurance/issues"
1515
},
1616
"engines": {
1717
"node": ">=18.0.0"

bootstrap/applicationset/applicationset-bootstrap.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,32 +9,32 @@ spec:
99
elements:
1010
- cluster: in-cluster
1111
name: ic-shared-minio-app
12-
repoURL: https://github.com/rh-aiservices-bu/insurance-claim-processing.git
12+
repoURL: https://github.com/rh-aiservices-bu/parasol-insurance.git
1313
targetRevision: dev
1414
path: bootstrap/ic-shared-minio
1515
- cluster: in-cluster
1616
name: ic-shared-database-app
17-
repoURL: https://github.com/rh-aiservices-bu/insurance-claim-processing.git
17+
repoURL: https://github.com/rh-aiservices-bu/parasol-insurance.git
1818
targetRevision: dev
1919
path: bootstrap/ic-shared-database
2020
- cluster: in-cluster
2121
name: ic-shared-llm-app
22-
repoURL: https://github.com/rh-aiservices-bu/insurance-claim-processing.git
22+
repoURL: https://github.com/rh-aiservices-bu/parasol-insurance.git
2323
targetRevision: dev
2424
path: bootstrap/ic-shared-llm
2525
- cluster: in-cluster
2626
name: ic-shared-img-det
27-
repoURL: https://github.com/rh-aiservices-bu/insurance-claim-processing.git
27+
repoURL: https://github.com/rh-aiservices-bu/parasol-insurance.git
2828
targetRevision: dev
2929
path: bootstrap/ic-shared-img-det
3030
- cluster: in-cluster
3131
name: ic-rhoai-configuration
32-
repoURL: https://github.com/rh-aiservices-bu/insurance-claim-processing.git
32+
repoURL: https://github.com/rh-aiservices-bu/parasol-insurance.git
3333
targetRevision: dev
3434
path: bootstrap/ic-rhoai-configuration
3535
- cluster: in-cluster
3636
name: ic-user-projects
37-
repoURL: https://github.com/rh-aiservices-bu/insurance-claim-processing.git
37+
repoURL: https://github.com/rh-aiservices-bu/parasol-insurance.git
3838
targetRevision: dev
3939
path: bootstrap/ic-user-projects
4040
template:

bootstrap/bootstrap.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ manually
22

33
```bash
44
GITEA_INT_URL="http://gitea.gitea.svc:3000/"
5-
GITEA_REPO="opentlc-mgr/insurance-claim-processing-mirror/"
5+
GITEA_REPO="opentlc-mgr/parasol-insurance-mirror/"
66
GITEA_BRANCH="dev/"
77
GITEA_APP_PATH="bootstrap/applications/ic-shared-minio-app.yaml"
88

@@ -15,6 +15,6 @@ oc apply -f ./bootstrap/applicationset/applicationset-bootstrap.yaml
1515
```
1616

1717
<!--
18-
# https://gitea.apps.cluster-rvl84.sandbox483.opentlc.com/opentlc-mgr/insurance-claim-processing-mirror/raw/branch/feature/minio-in-gitops/bootstrap/applications/ic-shared-minio-app.yaml
19-
#echo "http://gitea.gitea.svc:3000/opentlc-mgr/insurance-claim-processing-mirror/raw/branch/feature/minio-in-gitops/bootstrap/applications/ic-shared-minio-app.yaml"
18+
# https://gitea.apps.cluster-rvl84.sandbox483.opentlc.com/opentlc-mgr/parasol-insurance-mirror/raw/branch/feature/minio-in-gitops/bootstrap/applications/ic-shared-minio-app.yaml
19+
#echo "http://gitea.gitea.svc:3000/opentlc-mgr/parasol-insurance-mirror/raw/branch/feature/minio-in-gitops/bootstrap/applications/ic-shared-minio-app.yaml"
2020
-->

bootstrap/ic-rhoai-configuration/workbench-imagestream.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
annotations:
55
opendatahub.io/notebook-image-order: '01'
66
opendatahub.io/notebook-image-url: >-
7-
https://github.com/rh-aiservices-bu/insurance-claim-processing/tree/main/bootstrap/workbench-image
7+
https://github.com/rh-aiservices-bu/parasol-insurance/tree/main/bootstrap/workbench-image
88
internal.config.kubernetes.io/previousNamespaces: default
99
internal.config.kubernetes.io/previousKinds: ImageStream
1010
opendatahub.io/notebook-image-name: CUSTOM - Insurance Claim Processing Lab Workbench

bootstrap/ic-shared-database/populate-images.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
args:
2525
- -ec
2626
- |-
27-
git clone https://github.com/rh-aiservices-bu/insurance-claim-processing.git
27+
git clone https://github.com/rh-aiservices-bu/parasol-insurance.git
2828
2929
cat << 'EOF' | python3
3030
import boto3, os, botocore
@@ -43,13 +43,13 @@ spec:
4343
s3.create_bucket(Bucket=bucket_name)
4444
4545
# Upload original images to minio
46-
for filename in os.listdir("insurance-claim-processing/bootstrap/ic-shared-database/images/original_images"):
47-
with open(f"insurance-claim-processing/bootstrap/ic-shared-database/images/original_images/{filename}", "rb") as f:
46+
for filename in os.listdir("parasol-insurance/bootstrap/ic-shared-database/images/original_images"):
47+
with open(f"parasol-insurance/bootstrap/ic-shared-database/images/original_images/{filename}", "rb") as f:
4848
s3.upload_fileobj(f, bucket_name, f"original_images/{filename}")
4949
5050
# Upload processed images to minio
51-
for filename in os.listdir("insurance-claim-processing/bootstrap/ic-shared-database/images/processed_images"):
52-
with open(f"insurance-claim-processing/bootstrap/ic-shared-database/images/processed_images/{filename}", "rb") as f:
51+
for filename in os.listdir("parasol-insurance/bootstrap/ic-shared-database/images/processed_images"):
52+
with open(f"parasol-insurance/bootstrap/ic-shared-database/images/processed_images/{filename}", "rb") as f:
5353
s3.upload_fileobj(f, bucket_name, f"processed_images/{filename}")
5454
5555
EOF

content/antora.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ asciidoc:
1818
minio-user: minio
1919
minio-pass: minio123
2020
minio-endpoint: http://minio.ic-shared-minio.svc.cluster.local:9000/
21-
git-clone-repo-url: https://github.com/rh-aiservices-bu/insurance-claim-processing.git
21+
git-clone-repo-url: https://github.com/rh-aiservices-bu/parasol-insurance.git
2222
git-clone-repo-branch: dev
2323
user: userX
2424
password: openshift

content/modules/ROOT/pages/02-04-validating-env.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Now that you are connected to your workbench, let's make sure that all the expec
55

66
In your workbench:
77

8-
. In the left hand navigation menu, navigate to the folder called: `insurance-claim-processing/lab-materials/02`
8+
. In the left hand navigation menu, navigate to the folder called: `parasol-insurance/lab-materials/02`
99

1010
. Open the notebook called `02-04-validating.ipynb`
1111

content/modules/ROOT/pages/03-01-notebook-based-llm.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ include::_attributes.adoc[]
33

44
In this exercise, we will use a notebook to investigate how LLMs can be used.
55

6-
From the `insurance-claim-processing/lab-materials/03` folder, please open the notebook called `03-01-nb-llm-example.ipynb` and follow the instructions.
6+
From the `parasol-insurance/lab-materials/03` folder, please open the notebook called `03-01-nb-llm-example.ipynb` and follow the instructions.
77

88
When done, you can close the notebook and head to the next page.

content/modules/ROOT/pages/03-02-summarization.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ include::_attributes.adoc[]
33

44
As part of our claim processing, we want to summarize the text of a claim. In the next notebook we will investigate how the LLM can be used to do this task.
55

6-
From the `insurance-claim-processing/lab-materials/03` folder, please open the notebook called `03-02-summarization.ipynb` and follow the instructions.
6+
From the `parasol-insurance/lab-materials/03` folder, please open the notebook called `03-02-summarization.ipynb` and follow the instructions.
77

88
When done, you can close the notebook and head to the next page.

content/modules/ROOT/pages/03-03-information-extractions.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ include::_attributes.adoc[]
33

44
As part of our claim processing, we want to extract some information from the text of a claim. In the next notebook we will investigate how the LLM can be used to do this task.
55

6-
From the `insurance-claim-processing/lab-materials/03` folder, please open the notebook called `03-03-information-extraction.ipynb` and follow the instructions.
6+
From the `parasol-insurance/lab-materials/03` folder, please open the notebook called `03-03-information-extraction.ipynb` and follow the instructions.
77

88
When done, you can close the notebook and head to the next page.

content/modules/ROOT/pages/04-01-over-approach.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ Let's start by looking at a YOLOv8 model and explore how it works on static car
1818
[.bordershadow]
1919
image::04/sample-car-image.png[car image]
2020
21-
- In your running workbench, navigate to the folder `insurance-claim-processing/lab-materials/04`.
21+
- In your running workbench, navigate to the folder `parasol-insurance/lab-materials/04`.
2222
- Look for (and open) the notebook called `04-01-over-approach.ipynb`.
2323
- Execute the cells of the notebook, and ensure you understand what is happening.

content/modules/ROOT/pages/04-02-car-recog.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ image::04/box-identified-cars.png[identify cars]
2727

2828
If you want to dig deeper into this section, follow the instructions below. If you are pressed for time, you can skip to the next section.
2929

30-
- In your running workbench, navigate to the folder `insurance-claim-processing/lab-materials/04`.
30+
- In your running workbench, navigate to the folder `parasol-insurance/lab-materials/04`.
3131
- Look for (and open) the notebook called `04-02-car-recognition.ipynb`
3232
- Execute the cells of the notebook, and ensure you understand what is happening

content/modules/ROOT/pages/04-03-model-retraining.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ If you want to dig deeper into this section, follow the instructions below. If y
2323

2424
We have provided the following training data set, available as a zip file, and located in an S3 bucket: `accident-sample.zip` (as we don,t have time in this {ic-lab} to fully retrain the model, we will use a sample of the training data set).
2525

26-
- In your running workbench, navigate to the folder `insurance-claim-processing/lab-materials/04`.
26+
- In your running workbench, navigate to the folder `parasol-insurance/lab-materials/04`.
2727
- Look for (and open) the notebook called `04-03-model-retraining.ipynb`
2828
- Execute the cells of the notebook.
2929

content/modules/ROOT/pages/04-04-accident-recog.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ image::04/retrained-model-results.png[retrained modelresults]
1616

1717
If you want to dig deeper into this section, follow the instructions below. If you are pressed for time, you can skip to the next section.
1818

19-
- In your workbench, navigate to the folder `insurance-claim-processing/lab-materials/04`.
19+
- In your workbench, navigate to the folder `parasol-insurance/lab-materials/04`.
2020
- Look for (and open) the notebook called `04-04-accident-recog.ipynb`
2121
- Execute the cells of the notebook.

content/modules/ROOT/pages/04-05-model-serving.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ image::04/inference-url.png[]
184184

185185
We will now use this URL to query the model.
186186

187-
- In your running workbench, navigate to the folder `insurance-claim-processing/lab-materials/04`.
187+
- In your running workbench, navigate to the folder `parasol-insurance/lab-materials/04`.
188188
- Look for (and open) the notebook called `04-05-model-serving.ipynb`.
189189
- Execute the cells of the notebook, and ensure you understand what is happening.
190190

content/modules/ROOT/pages/05-03-web-app-deploy-application.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ spec:
9696
project: default
9797
source:
9898
path: lab-materials/05/app
99-
repoURL: https://github.com/rh-aiservices-bu/insurance-claim-processing.git
99+
repoURL: https://github.com/rh-aiservices-bu/parasol-insurance.git
100100
targetRevision: dev
101101
syncPolicy:
102102
automated:

content/modules/ROOT/pages/05-05-process-claims.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ For that, we will use a pipeline that can either be run ad-hoc or scheduled just
1515

1616
== What's inside the pipeline?
1717

18-
If you navigate to `insurance-claim-processing/lab-materials/05/05-05` you can see a variety of files. +
18+
If you navigate to `parasol-insurance/lab-materials/05/05-05` you can see a variety of files. +
1919

2020
[.bordershadow]
2121
image::05/05-process-claims-yaml.jpg[]

content/modules/ROOT/pages/06-01-potential-imp-ref.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ include::_attributes.adoc[]
33

44
== To the {ic} materials
55

6-
If you have any feedback regarding this {ic}, please use https://github.com/rh-aiservices-bu/insurance-claim-processing/issues[Issues,window=_blank] and https://github.com/rh-aiservices-bu/insurance-claim-processing/pulls[Pull Requests,window=_blank].
6+
If you have any feedback regarding this {ic}, please use https://github.com/rh-aiservices-bu/parasol-insurance/issues[Issues,window=_blank] and https://github.com/rh-aiservices-bu/parasol-insurance/pulls[Pull Requests,window=_blank].
77

88
But this section of the {ic} is not meant for Improvements and Refinements **to the lab**. Instead it is about...
99

content/modules/ROOT/pages/07-01-end-of-lab.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ include::_attributes.adoc[]
33

44
We hope that the materials we used during this time together were useful and gave you a better appreciation and understanding of what goes into an intelligent application.
55

6-
If you notice https://github.com/rh-aiservices-bu/insurance-claim-processing/issues[issues,window=_blank] with the content and/or want to send us a https://github.com/rh-aiservices-bu/insurance-claim-processing/pulls[pull request,window=_blank], we'll appreciate it very much.
6+
If you notice https://github.com/rh-aiservices-bu/parasol-insurance/issues[issues,window=_blank] with the content and/or want to send us a https://github.com/rh-aiservices-bu/parasol-insurance/pulls[pull request,window=_blank], we'll appreciate it very much.
77
8-
The instructions of this {ic} are always available at https://rh-aiservices-bu.github.io/insurance-claim-processing/[https://rh-aiservices-bu.github.io/insurance-claim-processing/,window=_blank]. Make note of this URL as it will be updated with new content as we continue to improve the {ic-lab}.
8+
The instructions of this {ic} are always available at https://rh-aiservices-bu.github.io/parasol-insurance/[https://rh-aiservices-bu.github.io/parasol-insurance/,window=_blank]. Make note of this URL as it will be updated with new content as we continue to improve the {ic-lab}.
99
1010
== Acknowledgements
1111
12-
Thanks to everyone who helped create this {ic}, https://github.com/rh-aiservices-bu/insurance-claim-processing/graphs/contributors[contributors,window=_blank] and reviewers!
12+
Thanks to everyone who helped create this {ic}, https://github.com/rh-aiservices-bu/parasol-insurance/graphs/contributors[contributors,window=_blank] and reviewers!

content/modules/ROOT/pages/index.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ a|- What else could we add that would have value?
5858

5959
== Contributing
6060

61-
If you are interested in contributing to this project, consult this GitHub Repo: https://github.com/rh-aiservices-bu/insurance-claim-processing/[https://github.com/rh-aiservices-bu/insurance-claim-processing/,window=_blank]
61+
If you are interested in contributing to this project, consult this GitHub Repo: https://github.com/rh-aiservices-bu/parasol-insurance/[https://github.com/rh-aiservices-bu/parasol-insurance/,window=_blank]

default-site.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ui:
99
supplemental_files: ./content/supplemental-ui
1010

1111
content:
12-
edit_url: 'https://github.com/rh-aiservices-bu/insurance-claim-processing/edit/dev/{path}'
12+
edit_url: 'https://github.com/rh-aiservices-bu/parasol-insurance/edit/dev/{path}'
1313
sources:
1414
- url: ./
1515
start_path: content

0 commit comments

Comments
 (0)