-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update bootcamp instructions for V2.11 #12
base: main
Are you sure you want to change the base?
Changes from 11 commits
34e7bd1
a7710ef
32947c3
f04d942
2c8c395
46aee00
a43ad1e
61b249e
73a15b7
2628b7d
527c37d
f13c3bf
f376aa1
5053a49
6eec93f
f759be1
4dace60
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,7 +84,7 @@ spec: | |
+ | ||
[TIP] | ||
==== | ||
Your Data Science Cluster requires of a dspa, so that you can create pipelines. | ||
Your Data Science Cluster requires a dspa, so that you can create pipelines. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I know that you guys didn't modify this, the DSC does not require a DSPA. A project requires a DSPA. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Completed the changes. Please review and let me know. Thank you There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added .DS_Store to .gitignore - f376aa1 |
||
|
||
Before creating the dspa object, your Data Science Project shows a button to *Configure pipeline server*: | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -498,7 +498,7 @@ Depended on which workbench image you are using, we have to make some changes to | |
2. Update the _Base Parameters and PostgreSQL info_ | ||
|
||
``` | ||
product_version = 2.9 | ||
product_version = 2.11 | ||
CONNECTION_STRING = "postgresql+psycopg://vectordb:[email protected]:5432/vectordb" | ||
COLLECTION_NAME = f"rhoai-doc-{product_version}" | ||
``` | ||
|
@@ -513,7 +513,7 @@ NOTE: _Create the index and ingest the documents_ will take more than 5 minutes | |
|
||
``` | ||
CONNECTION_STRING = "postgresql+psycopg://vectordb:[email protected]:5432/vectordb" | ||
COLLECTION_NAME = "rhoai-doc-2.9" | ||
COLLECTION_NAME = "rhoai-doc-2.11" | ||
``` | ||
|
||
Run through the notebook | ||
|
@@ -530,7 +530,7 @@ TEMPERATURE=0.01 | |
PRESENCE_PENALTY=1.03 | ||
|
||
CONNECTION_STRING = "postgresql+psycopg://vectordb:[email protected]:5432/vectordb" | ||
COLLECTION_NAME = "rhoai-doc-2.9" | ||
COLLECTION_NAME = "rhoai-doc-2.11" | ||
``` | ||
|
||
At the end, should have a successful RAG with LLM sample that you can query. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Red Hat OpenShift Virtualization Roadshow | ||
name: AI Accelerate Bootcamp | ||
|
||
modules: | ||
activate: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.DS_Store should not be committed.
I would recommend adding it to the project .git_ignore but also I would recommend setting it in your global git ignore config:
https://sebastiandedeyne.com/setting-up-a-global-gitignore-file/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can also just take the .gitignore file from ai-accelerator: https://github.com/redhat-ai-services/ai-accelerator/blob/main/.gitignore