Package-level declarations

Types

Link copied to clipboard
interface Embedder

Interface for text embedding operations. Implementations of this interface can convert text into vector representations (embeddings) and calculate the difference between two embeddings.

Link copied to clipboard
@Serializable
data class Vector(val values: List<Double>)

Represents a vector of floating-point values. Used for storing embeddings of text.