io.thomasvitale.langchain4j.spring.ollama.api.EmbeddingResponse Maven / Gradle / Ivy
The newest version!
package io.thomasvitale.langchain4j.spring.ollama.api;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* Represents the response from the Ollama API for embedding requests to /api/embeddings.
*
* @param embedding the embedding representation generated by the model
*
* @see Ollama Types
* @see Ollama API
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public record EmbeddingResponse(
List embedding
) {}