Interface QdrantRuntimeConfig


@ConfigRoot(phase=RUN_TIME) @ConfigMapping(prefix="quarkus.langchain4j.qdrant") public interface QdrantRuntimeConfig
  • Method Details

    • host

      String host()
      The URL of the Qdrant server.
    • port

      @WithDefault("6334") Integer port()
      The gRPC port of the Qdrant server. Defaults to 6334
    • apiKey

      Optional<String> apiKey()
      The Qdrant API key to authenticate with.
    • useTls

      @WithDefault("false") boolean useTls()
      Whether to use TLS(HTTPS). Defaults to false.
    • payloadTextKey

      @WithDefault("text_segment") String payloadTextKey()
      The field name of the text segment in the payload. Defaults to "text_segment"
    • collection

      The collection configuration.