Add VertexAI Embedding Model support

- add new spring-ai-vertex-ai-embedding project.
 - add VertexAiTextEmbeddingModel and VertexAiMultimodalEmbeddingMode with related options configuration classes.
 - add ITs
 - add auto-configuraiton and boot starters.
 - register to BOM.
 - add documentation.
 - add multimodal embedding documentation
 - extend the Embedding metdata so that it can keep references to the source document's data, Id, mediatype

 Resolves #1013
 Related to #1009
This commit is contained in:
Christian Tzolov
2024-07-04 12:06:45 +02:00
committed by Mark Pollack
parent 40df264078
commit c70c20b79d
61 changed files with 3432 additions and 70 deletions

View File

@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.ai</groupId>
@@ -116,7 +117,7 @@
<version>${oracle.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ucp</artifactId>
<version>${oracle.version}</version>
@@ -214,6 +215,14 @@
<optional>true</optional>
</dependency>
<!-- Vertex AI Embedding -->
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-vertex-ai-embedding</artifactId>
<version>${project.parent.version}</version>
<optional>true</optional>
</dependency>
<!-- Vertex AI Gemini -->
<dependency>
<groupId>org.springframework.ai</groupId>
@@ -500,6 +509,6 @@
<scope>test</scope>
</dependency>
</dependencies>
</dependencies>
</project>