Uses of Class
com.azure.ai.inference.models.EmbeddingInputType
Packages that use EmbeddingInputType
Package
Description
Package containing the classes for Model.
Package containing the data models for Model.
-
Uses of EmbeddingInputType in com.azure.ai.inference
Methods in com.azure.ai.inference with parameters of type EmbeddingInputTypeModifier and TypeMethodDescriptionEmbeddingsAsyncClient.embed(List<String> input, Integer dimensions, EmbeddingEncodingFormat encodingFormat, EmbeddingInputType inputType, String model, ExtraParameters extraParams) Return the embedding vectors for given text prompts.EmbeddingsClient.embed(List<String> input, Integer dimensions, EmbeddingEncodingFormat encodingFormat, EmbeddingInputType inputType, String model, ExtraParameters extraParams) Return the embedding vectors for given text prompts.Mono<com.azure.core.http.rest.Response<EmbeddingsResult>> EmbeddingsAsyncClient.embedWithResponse(List<String> input, Integer dimensions, EmbeddingEncodingFormat encodingFormat, EmbeddingInputType inputType, String model, ExtraParameters extraParams) Return the embedding vectors for given text prompts.com.azure.core.http.rest.Response<EmbeddingsResult> EmbeddingsClient.embedWithResponse(List<String> input, Integer dimensions, EmbeddingEncodingFormat encodingFormat, EmbeddingInputType inputType, String model, ExtraParameters extraParams) Return the embedding vectors for given text prompts. -
Uses of EmbeddingInputType in com.azure.ai.inference.models
Fields in com.azure.ai.inference.models declared as EmbeddingInputTypeModifier and TypeFieldDescriptionstatic final EmbeddingInputTypeEmbeddingInputType.DOCUMENTIndicates the input represents a document that is stored in a vector database.static final EmbeddingInputTypeEmbeddingInputType.QUERYIndicates the input represents a search query to find the most relevant documents in your vector database.static final EmbeddingInputTypeEmbeddingInputType.TEXTIndicates the input is a general text input.Methods in com.azure.ai.inference.models that return EmbeddingInputTypeModifier and TypeMethodDescriptionstatic EmbeddingInputTypeEmbeddingInputType.fromString(String name) Creates or finds a EmbeddingInputType from its string representation.Methods in com.azure.ai.inference.models that return types with arguments of type EmbeddingInputTypeModifier and TypeMethodDescriptionstatic Collection<EmbeddingInputType> EmbeddingInputType.values()Gets known EmbeddingInputType values.