Package org.springframework.ai.openai
Class OpenAiEmbeddingClient
java.lang.Object
org.springframework.ai.embedding.AbstractEmbeddingClient
org.springframework.ai.openai.OpenAiEmbeddingClient
- All Implemented Interfaces:
EmbeddingClient,ModelClient<EmbeddingRequest,EmbeddingResponse>
Open AI Embedding Client implementation.
- Author:
- Christian Tzolov
-
Field Summary
Fields inherited from class org.springframework.ai.embedding.AbstractEmbeddingClient
embeddingDimensions -
Constructor Summary
ConstructorsConstructorDescriptionOpenAiEmbeddingClient(OpenAiApi openAiApi) OpenAiEmbeddingClient(OpenAiApi openAiApi, MetadataMode metadataMode) OpenAiEmbeddingClient(OpenAiApi openAiApi, MetadataMode metadataMode, OpenAiEmbeddingOptions options) -
Method Summary
Modifier and TypeMethodDescriptioncall(EmbeddingRequest request) Executes a method call to the AI model.Embeds the given document's content into a vector.Methods inherited from class org.springframework.ai.embedding.AbstractEmbeddingClient
dimensions, dimensionsMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.ai.embedding.EmbeddingClient
embed, embed, embedForResponse
-
Constructor Details
-
OpenAiEmbeddingClient
-
OpenAiEmbeddingClient
-
OpenAiEmbeddingClient
public OpenAiEmbeddingClient(OpenAiApi openAiApi, MetadataMode metadataMode, OpenAiEmbeddingOptions options)
-
-
Method Details
-
embed
Description copied from interface:EmbeddingClientEmbeds the given document's content into a vector.- Parameters:
document- the document to embed.- Returns:
- the embedded vector.
-
call
Description copied from interface:ModelClientExecutes a method call to the AI model.- Parameters:
request- the request object to be sent to the AI model- Returns:
- the response from the AI model
-