This version is still in development and is not considered stable yet. For the latest snapshot version, please use Spring AI 1.0.0-SNAPSHOT! |
Pinecone
This section walks you through setting up the Pinecone VectorStore
to store document embeddings and perform similarity searches.
Pinecone is a popular cloud-based vector database, which allows you to store and search vectors efficiently.
Prerequisites
-
Pinecone Account: Before you start, sign up for a Pinecone account.
-
Pinecone Project: Once registered, create a new project, an index, and generate an API key. You’ll need these details for configuration.
-
EmbeddingModel
instance to compute the document embeddings. Several options are available:-
If required, an API key for the EmbeddingModel to generate the embeddings stored by the
PineconeVectorStore
.
-
To set up PineconeVectorStore
, gather the following details from your Pinecone account:
-
Pinecone API Key
-
Pinecone Environment
-
Pinecone Project ID
-
Pinecone Index Name
-
Pinecone Namespace
This information is available to you in the Pinecone UI portal. |
Auto-configuration
Spring AI provides Spring Boot auto-configuration for the Pinecone Vector Store.
To enable it, add the following dependency to your project’s Maven pom.xml
file:
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-pinecone-store-spring-boot-starter</artifactId>
</dependency>
or to your Gradle build.gradle
build file.
dependencies {
implementation 'org.springframework.ai:spring-ai-pinecone-store-spring-boot-starter'
}
Refer to the Dependency Management section to add the Spring AI BOM to your build file. |
Refer to the Repositories section to add Milestone and/or Snapshot Repositories to your build file. |
Additionally, you will need a configured EmbeddingModel
bean. Refer to the EmbeddingModel section for more information.
Here is an example of the needed bean:
@Bean
public EmbeddingModel embeddingModel() {
// Can be any other EmbeddingModel implementation.
return new OpenAiEmbeddingModel(new OpenAiApi(System.getenv("SPRING_AI_OPENAI_API_KEY")));
}
To connect to Pinecone you need to provide access details for your instance. A simple configuration can either be provided via Spring Boot’s application.properties,
spring.ai.vectorstore.pinecone.apiKey=<your api key>
spring.ai.vectorstore.pinecone.environment=<your environment>
spring.ai.vectorstore.pinecone.projectId=<your project id>
spring.ai.vectorstore.pinecone.index-name=<your index name>
# API key if needed, e.g. OpenAI
spring.ai.openai.api.key=<api-key>
Please have a look at the list of configuration parameters for the vector store to learn about the default values and configuration options.
Now you can Auto-wire the Pinecone Vector Store in your application and use it
@Autowired VectorStore vectorStore;
// ...
List <Document> documents = List.of(
new Document("Spring AI rocks!! Spring AI rocks!! Spring AI rocks!! Spring AI rocks!! Spring AI rocks!!", Map.of("meta1", "meta1")),
new Document("The World is Big and Salvation Lurks Around the Corner"),
new Document("You walk forward facing the past and you turn back toward the future.", Map.of("meta2", "meta2")));
// Add the documents
vectorStore.add(documents);
// Retrieve documents similar to a query
List<Document> results = vectorStore.similaritySearch(SearchRequest.query("Spring").withTopK(5));
Configuration properties
You can use the following properties in your Spring Boot configuration to customize the Pinecone vector store.
Property | Description | Default value |
---|---|---|
|
Pinecone API Key |
- |
|
Pinecone environment |
|
|
Pinecone project ID |
- |
|
Pinecone index name |
- |
|
Pinecone namespace |
- |
|
Pinecone namespace |
- |
|
Pinecone metadata field name used to store the original text content. |
|
|
Pinecone metadata field name used to store the computed distance. |
|
|
20 sec. |
Metadata filtering
You can leverage the generic, portable metadata filters with the Pinecone store.
For example, you can use either the text expression language:
vectorStore.similaritySearch(
SearchRequest.defaults()
.withQuery("The World")
.withTopK(TOP_K)
.withSimilarityThreshold(SIMILARITY_THRESHOLD)
.withFilterExpression("author in ['john', 'jill'] && article_type == 'blog'"));
or programmatically using the Filter.Expression
DSL:
FilterExpressionBuilder b = new FilterExpressionBuilder();
vectorStore.similaritySearch(SearchRequest.defaults()
.withQuery("The World")
.withTopK(TOP_K)
.withSimilarityThreshold(SIMILARITY_THRESHOLD)
.withFilterExpression(b.and(
b.in("author","john", "jill"),
b.eq("article_type", "blog")).build()));
These filter expressions are converted into the equivalent Pinecone filters. |
Manual Configuration
If you prefer to configure the PineconeVectorStore
manually, you can do so by creating a PineconeVectorStoreConfig
bean
and passing it to the PineconeVectorStore
constructor.
Add these dependencies to your project:
-
OpenAI: Required for calculating embeddings.
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-openai-spring-boot-starter</artifactId>
</dependency>
-
Pinecone
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-pinecone-store</artifactId>
</dependency>
Refer to the Dependency Management section to add the Spring AI BOM to your build file. |
Sample Code
To configure Pinecone in your application, you can use the following setup:
@Bean
public PineconeVectorStoreConfig pineconeVectorStoreConfig() {
return PineconeVectorStoreConfig.builder()
.withApiKey(<PINECONE_API_KEY>)
.withEnvironment("gcp-starter")
.withProjectId("89309e6")
.withIndexName("spring-ai-test-index")
.withNamespace("") // the free tier doesn't support namespaces.
.withContentFieldName("my_content") // optional field to store the original content. Defaults to `document_content`
.build();
}
Integrate with OpenAI’s embeddings by adding the Spring Boot OpenAI starter to your project. This provides you with an implementation of the Embeddings client:
@Bean
public VectorStore vectorStore(PineconeVectorStoreConfig config, EmbeddingModel embeddingModel) {
return new PineconeVectorStore(config, embeddingModel);
}
In your main code, create some documents:
List<Document> documents = List.of(
new Document("Spring AI rocks!! Spring AI rocks!! Spring AI rocks!! Spring AI rocks!! Spring AI rocks!!", Map.of("meta1", "meta1")),
new Document("The World is Big and Salvation Lurks Around the Corner"),
new Document("You walk forward facing the past and you turn back toward the future.", Map.of("meta2", "meta2")));
Add the documents to Pinecone:
vectorStore.add(documents);
And finally, retrieve documents similar to a query:
List<Document> results = vectorStore.similaritySearch(SearchRequest.query("Spring").withTopK(5));
If all goes well, you should retrieve the document containing the text "Spring AI rocks!!".