reformatting

This commit is contained in:
Mark Pollack
2024-12-16 14:00:44 -05:00
parent 351dfc2f85
commit d6d246096b

View File

@@ -275,14 +275,14 @@ public class PineconeVectorStoreIT {
@Bean
public VectorStore vectorStore(EmbeddingModel embeddingModel) {
return PineconeVectorStore.builder()
.embeddingModel(embeddingModel)
.apiKey(System.getenv("PINECONE_API_KEY"))
.environment(PINECONE_ENVIRONMENT)
.projectId(PINECONE_PROJECT_ID)
.indexName(PINECONE_INDEX_NAME)
.namespace(PINECONE_NAMESPACE)
.contentFieldName(CUSTOM_CONTENT_FIELD_NAME)
.build();
.embeddingModel(embeddingModel)
.apiKey(System.getenv("PINECONE_API_KEY"))
.environment(PINECONE_ENVIRONMENT)
.projectId(PINECONE_PROJECT_ID)
.indexName(PINECONE_INDEX_NAME)
.namespace(PINECONE_NAMESPACE)
.contentFieldName(CUSTOM_CONTENT_FIELD_NAME)
.build();
}
@Bean