Interface ChromaConfig


@ConfigRoot(phase=RUN_TIME) @ConfigMapping(prefix="quarkus.langchain4j.chroma") public interface ChromaConfig
  • Method Summary

    Modifier and Type
    Method
    Description
    The collection name.
    The timeout duration for the Chroma client.
    url()
    URL where the Chroma database is listening for requests
  • Method Details

    • url

      String url()
      URL where the Chroma database is listening for requests
    • collectionName

      @WithDefault("default") String collectionName()
      The collection name.
    • timeout

      Optional<Duration> timeout()
      The timeout duration for the Chroma client. If not specified, 5 seconds will be used.