-
Notifications
You must be signed in to change notification settings - Fork 824
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Embedding an Azure OpenAI
* add some logging * improve integration tests with evaluators
- Loading branch information
1 parent
f2f81cd
commit e9a6ae7
Showing
9 changed files
with
148 additions
and
287 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
109 changes: 109 additions & 0 deletions
109
...c/main/java/org/springframework/ai/azure/openai/embedding/AzureOpenAiEmbeddingClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
package org.springframework.ai.azure.openai.embedding; | ||
|
||
import com.azure.ai.openai.OpenAIClient; | ||
import com.azure.ai.openai.models.EmbeddingItem; | ||
import com.azure.ai.openai.models.Embeddings; | ||
import com.azure.ai.openai.models.EmbeddingsOptions; | ||
import com.azure.ai.openai.models.EmbeddingsUsage; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
import org.springframework.ai.document.Document; | ||
import org.springframework.ai.embedding.Embedding; | ||
import org.springframework.ai.embedding.EmbeddingClient; | ||
import org.springframework.ai.embedding.EmbeddingResponse; | ||
import org.springframework.util.Assert; | ||
|
||
import java.util.ArrayList; | ||
import java.util.HashMap; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.stream.Collectors; | ||
|
||
public class AzureOpenAiEmbeddingClient implements EmbeddingClient { | ||
|
||
private static final Logger logger = LoggerFactory.getLogger(AzureOpenAiEmbeddingClient.class); | ||
|
||
private final OpenAIClient azureOpenAiClient; | ||
|
||
private final String model; | ||
|
||
public AzureOpenAiEmbeddingClient(OpenAIClient azureOpenAiClient) { | ||
this(azureOpenAiClient, "text-embedding-ada-002"); | ||
} | ||
|
||
public AzureOpenAiEmbeddingClient(OpenAIClient azureOpenAiClient, String model) { | ||
Assert.notNull(azureOpenAiClient, "com.azure.ai.openai.OpenAIClient must not be null"); | ||
Assert.notNull(model, "Model must not be null"); | ||
this.azureOpenAiClient = azureOpenAiClient; | ||
this.model = model; | ||
} | ||
|
||
@Override | ||
public List<Double> embed(String text) { | ||
logger.debug("Retrieving embeddings"); | ||
Embeddings embeddings = this.azureOpenAiClient.getEmbeddings(this.model, new EmbeddingsOptions(List.of(text))); | ||
logger.debug("Embeddings retrieved"); | ||
return extractEmbeddingsList(embeddings); | ||
} | ||
|
||
@Override | ||
public List<Double> embed(Document document) { | ||
logger.debug("Retrieving embeddings"); | ||
Embeddings embeddings = this.azureOpenAiClient.getEmbeddings(this.model, | ||
new EmbeddingsOptions(List.of(document.getContent()))); | ||
logger.debug("Embeddings retrieved"); | ||
return extractEmbeddingsList(embeddings); | ||
} | ||
|
||
private List<Double> extractEmbeddingsList(Embeddings embeddings) { | ||
return embeddings.getData() | ||
.stream() | ||
.map(EmbeddingItem::getEmbedding) | ||
.flatMap(List::stream) | ||
.collect(Collectors.toList()); | ||
} | ||
|
||
@Override | ||
public List<List<Double>> embed(List<String> texts) { | ||
logger.debug("Retrieving embeddings"); | ||
Embeddings embeddings = this.azureOpenAiClient.getEmbeddings(this.model, new EmbeddingsOptions(texts)); | ||
logger.debug("Embeddings retrieved"); | ||
return embeddings.getData().stream().map(emb -> emb.getEmbedding()).collect(Collectors.toList()); | ||
} | ||
|
||
@Override | ||
public EmbeddingResponse embedForResponse(List<String> texts) { | ||
logger.debug("Retrieving embeddings"); | ||
Embeddings embeddings = this.azureOpenAiClient.getEmbeddings(this.model, new EmbeddingsOptions(texts)); | ||
logger.debug("Embeddings retrieved"); | ||
return generateEmbeddingResponse(embeddings); | ||
} | ||
|
||
private EmbeddingResponse generateEmbeddingResponse(Embeddings embeddings) { | ||
List<Embedding> data = generateEmbeddingList(embeddings.getData()); | ||
Map<String, Object> metadata = generateMetadata(this.model, embeddings.getUsage()); | ||
return new EmbeddingResponse(data, metadata); | ||
} | ||
|
||
private Map<String, Object> generateMetadata(String model, EmbeddingsUsage embeddingsUsage) { | ||
Map<String, Object> metadata = new HashMap<>(); | ||
metadata.put("model", model); | ||
metadata.put("prompt-tokens", embeddingsUsage.getPromptTokens()); | ||
// NOTE, not in API of AzureAI - metadata.put("completion-tokens", | ||
// embeddingsUsage.getCompletionTokens()); | ||
metadata.put("total-tokens", embeddingsUsage.getTotalTokens()); | ||
return metadata; | ||
} | ||
|
||
private List<Embedding> generateEmbeddingList(List<EmbeddingItem> nativeData) { | ||
List<Embedding> data = new ArrayList<>(); | ||
for (EmbeddingItem nativeDatum : nativeData) { | ||
List<Double> nativeDatumEmbedding = nativeDatum.getEmbedding(); | ||
int nativeIndex = nativeDatum.getPromptIndex(); | ||
Embedding embedding = new Embedding(nativeDatumEmbedding, nativeIndex); | ||
data.add(embedding); | ||
} | ||
return data; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.