@@ -580,7 +580,7 @@ describe('Unit testing of the vectorizer factory class', () => {
580580
581581 it ( 'should create the correct Text2VecAzureOpenAIConfig type with defaults' , ( ) => {
582582 const config = configure . vectorizer . text2VecAzureOpenAI ( {
583- deploymentID : 'deployment-id' ,
583+ deploymentId : 'deployment-id' ,
584584 resourceName : 'resource-name' ,
585585 } ) ;
586586 expect ( config ) . toEqual < VectorConfigCreate < never , undefined , 'hnsw' , 'text2vec-azure-openai' > > ( {
@@ -592,7 +592,7 @@ describe('Unit testing of the vectorizer factory class', () => {
592592 vectorizer : {
593593 name : 'text2vec-azure-openai' ,
594594 config : {
595- deploymentID : 'deployment-id' ,
595+ deploymentId : 'deployment-id' ,
596596 resourceName : 'resource-name' ,
597597 } ,
598598 } ,
@@ -603,7 +603,7 @@ describe('Unit testing of the vectorizer factory class', () => {
603603 const config = configure . vectorizer . text2VecAzureOpenAI ( {
604604 name : 'test' ,
605605 baseURL : 'base-url' ,
606- deploymentID : 'deployment-id' ,
606+ deploymentId : 'deployment-id' ,
607607 resourceName : 'resource-name' ,
608608 vectorizeCollectionName : true ,
609609 } ) ;
@@ -617,7 +617,7 @@ describe('Unit testing of the vectorizer factory class', () => {
617617 name : 'text2vec-azure-openai' ,
618618 config : {
619619 baseURL : 'base-url' ,
620- deploymentID : 'deployment-id' ,
620+ deploymentId : 'deployment-id' ,
621621 resourceName : 'resource-name' ,
622622 vectorizeCollectionName : true ,
623623 } ,
0 commit comments