File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ import {nagSuppressions} from "../nagSuppressions"
3535const RAG_MODEL_ID = "anthropic.claude-3-sonnet-20240229-v1:0"
3636const EMBEDDING_MODEL = "amazon.titan-embed-text-v2:0"
3737const SLACK_SLASH_COMMAND = "/ask-eps"
38- // const COLLECTION_NAME = "eps-assist-vector-db"
38+ const COLLECTION_NAME = "eps-assist-vector-db"
3939const VECTOR_INDEX_NAME = "eps-assist-os-index"
4040const BEDROCK_KB_NAME = "eps-assist-kb"
4141const BEDROCK_KB_DATA_SOURCE = "eps-assist-kb-ds"
@@ -213,7 +213,7 @@ export class EpsAssistMeStack extends Stack {
213213
214214 //Define OpenSearchServerless Collection & depends on policies
215215 const osCollection = new ops . CfnCollection ( this , "osCollection" , {
216- // name: COLLECTION_NAME,
216+ name : ` ${ COLLECTION_NAME } - ${ props . version } ` ,
217217 description : "EPS Assist Vector Store" ,
218218 type : "VECTORSEARCH"
219219 } )
You can’t perform that action at this time.
0 commit comments