All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkiverse.langchain4j.chroma.runtime.DeleteEmbeddingsRequest Maven / Gradle / Ivy

There is a newer version: 0.21.0
Show newest version
package io.quarkiverse.langchain4j.chroma.runtime;

import java.util.List;

import io.quarkus.runtime.annotations.RegisterForReflection;

@RegisterForReflection
public class DeleteEmbeddingsRequest {

    private List ids;

    public DeleteEmbeddingsRequest(List ids) {
        this.ids = ids;
    }

    public List getIds() {
        return ids;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy