Skip to content

Commit 6be3da0

Browse files
committed
Merge branch 'dev'
2 parents 9596f30 + 18a93b1 commit 6be3da0

File tree

346 files changed

+9673
-9140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

346 files changed

+9673
-9140
lines changed

.github/.wordlist.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ cd
2727
centric
2828
cephfs
2929
Chase
30+
chatbot
3031
ChatGPT
3132
ChatOps
3233
Chris
@@ -37,6 +38,7 @@ cls
3738
CMD
3839
config
3940
Config
41+
Containerfile
4042
courseware
4143
cpu
4244
CreateNamespace
@@ -123,7 +125,9 @@ jsonpath
123125
jupyter
124126
Jupyter
125127
JupyterLab
128+
KServe
126129
kubectl
130+
Kubeflow
127131
kubernetes
128132
linter
129133
llm
@@ -144,6 +148,11 @@ MinIO
144148
mistralai
145149
mn
146150
mockups
151+
modelCar
152+
Modelcar
153+
ModelCar
154+
Modelcars
155+
ModelCars
147156
modelmesh
148157
ModelMesh
149158
modelresults
@@ -160,6 +169,7 @@ ods
160169
ojsonpath
161170
ok
162171
onnx
172+
OpenAI
163173
opencv
164174
OpenCV
165175
openshift
@@ -194,11 +204,14 @@ py
194204
pytorch
195205
Pytorch
196206
quantized
207+
Qwen
208+
qwen
197209
rbac
198210
README
199211
readonly
200212
recog
201213
redhat
214+
RedHatAI
202215
repo
203216
repoURL
204217
RespectIgnoreDifferences
@@ -216,6 +229,7 @@ RoboFlow
216229
rollout
217230
runtime
218231
RWX
232+
SDK
219233
selfHeal
220234
Serverless
221235
src
@@ -249,6 +263,7 @@ unopinionated
249263
url
250264
userX
251265
vectordb
266+
VectorDB
252267
venv
253268
vscode
254269
VSCode

.github/workflows/publish.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ jobs:
1919
steps:
2020
- name: Checkout repository
2121
uses: actions/checkout@v4
22-
22+
with:
23+
ref: main
2324
- name: Install Node.js
24-
uses: actions/setup-node@v3
25+
uses: actions/setup-node@v4
2526
with:
2627
node-version: '18'
2728

@@ -39,13 +40,16 @@ jobs:
3940
ls -alR .
4041
4142
- name: Setup Pages
42-
uses: actions/configure-pages@v3
43-
43+
uses: actions/configure-pages@v4
44+
- name: find where the files are
45+
run: |
46+
pwd
47+
#ls -alR .
4448
- name: Upload artifact
4549
uses: actions/upload-pages-artifact@v3
4650
with:
4751
path: content/www
4852

4953
- name: Deploy to GitHub Pages
5054
id: deployment
51-
uses: actions/deploy-pages@v4
55+
uses: actions/deploy-pages@v4

.github/workflows/spelling_action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
- name: Spellcheck
1717
uses: rojopolis/spellcheck-github-actions@v0
@@ -21,7 +21,7 @@ jobs:
2121
output_file: spellcheck-output.txt
2222

2323
- name: Upload artifact
24-
uses: actions/upload-artifact@v3
24+
uses: actions/upload-artifact@v4
2525
if: '!cancelled()' # Do not upload artifact if job was cancelled
2626
with:
2727
name: Spellcheck Output

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
# OpenShift AI Unleashed: Transforming Claims Processing for Maximum Efficiency!
1+
# Parasol Insurance Workshop
22

33
## Introduction
44

5-
This repository contains the code, instructions, resources and materials associated with the Lab called **OpenShift AI Unleashed: Transforming Claims Processing for Maximum Efficiency!**.
5+
This repository contains the code, instructions, resources and materials associated with the Lab called **Parasol Insurance Workshop**.
66

77
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

1111
<details>
12-
<summary>Display Development-centric information</summary>
12+
<summary>Workshop development information</summary>
1313

1414
## General Development Information
1515

1616
### Working with this repo
1717

1818
- `main` branch is the one used for production. That's where the Prod and Test catalog items from [demo.redhat.com](https://demo.redhat.com) point to (instructions, materials used,...).
1919
- `dev` branch is for development. That's where the Dev catalog item points to.
20-
- Branches are made from `dev` (hot fixes could be made from `main` if really needed).
20+
- Use a branch from `dev`as much as possible for feature development or bug fixes.
2121
- When ready, PRs should be made to `dev`. Once all features, bug fixes,... are checked in and tested for a new release, another PR will be made from `dev` to `main`.
2222
- Branches must be prefixed with `/feature` (example `feature/new-pipeline-instructions`), `bugfix`, or other meaningful info.
2323
- Add your name/handle in the branch name if needed to avoid confusion.
@@ -48,7 +48,7 @@ Useful link: [https://redhat-scholars.github.io/build-course/rhs-build-course/de
4848

4949
- Python 3.11
5050
- Nodejs > 18
51-
- An existing instance of Hugging Face TGI with a loaded model available at `INFERENCE_SERVER_URL`. This application is based on Mistral-TB Prompt format. You will need to modify this format if you are using a different model.
51+
- An existing instance of an LLM served through an OpenAI compatible API at `INFERENCE_SERVER_URL`. This application is based on Granite-3.1-8B-Instruct Prompt format. You will need to modify this format if you are using a different model.
5252

5353
### Installation
5454

@@ -114,9 +114,9 @@ done
114114
</details>
115115

116116
<details>
117-
<summary>Links for Summit event environment assignment</summary>
117+
<summary>Demo environment information</summary>
118118

119-
- URL for all labs: [https://one.demo.redhat.com/](https://one.demo.redhat.com/)
119+
- URL: [https://catalog.demo.redhat.com/](https://catalog.demo.redhat.com/)
120120
- Search for `parasol`
121121

122122
</details>

app/backend/Pipfile

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,27 @@ verify_ssl = false
99
name = "pytorch"
1010

1111
[packages]
12-
langchain = "==0.1.15"
13-
openai = "==1.17.0"
14-
pymilvus = "~=2.4.0"
15-
einops = "~=0.7.0"
16-
sentence_transformers = "~=2.6.1"
17-
boto3 = "~=1.34.81"
18-
fastapi = "~=0.110.1"
19-
httpx = "~=0.27.0"
12+
langchain = "==0.3.1"
13+
langchain-community = "==0.3.1"
14+
langchain-milvus = "==0.1.5"
15+
langchain-huggingface = "==0.1.0"
16+
einops = "==0.8.0"
17+
openai = "==1.47.1"
18+
pymilvus = "==2.4.6"
19+
sentence_transformers = "==3.1.1"
20+
text_generation = "==0.7.0"
21+
boto3 = "==1.34.162"
22+
fastapi = "~=0.115.2"
23+
httpx = "~=0.27.2"
2024
python-dotenv = "~=1.0.1"
2125
psycopg2-binary = "~=2.9.9"
22-
uvicorn = "~=0.29.0"
23-
websockets = "~=12.0"
24-
python-multipart = "0.0.9"
26+
uvicorn = "~=0.31.1"
27+
websockets = "~=13.1"
28+
python-multipart = "0.0.12"
2529
torch = {version = "==2.2.2+cpu", index = "pytorch"}
2630

2731
[dev-packages]
28-
"watchdog[watchmedo]" = "~=4.0.0"
32+
"watchdog[watchmedo]" = "~=5.0.3"
2933
black = "*"
3034

3135
[requires]

0 commit comments

Comments
 (0)