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

io.quarkiverse.langchain4j.qdrant.QdrantDevServices Maven / Gradle / Ivy

There is a newer version: 0.23.0.CR2
Show newest version
package io.quarkiverse.langchain4j.qdrant;

import io.quarkus.devservices.common.ContainerLocator;

public final class QdrantDevServices {
    /**
     * Label to add to shared Dev Service for Chroma running in containers.
     * This allows other applications to discover the running service and use it instead of starting a new instance.
     */
    static final String DEV_SERVICE_LABEL = "quarkus-dev-service-qdrant";
    static final int QDRANT_PORT = 6334;

    static final ContainerLocator LOCATOR = new ContainerLocator(DEV_SERVICE_LABEL, QDRANT_PORT);

    private QdrantDevServices() {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy