Interface EasyRagConfig.ReuseEmbeddingsConfig

Enclosing interface:
EasyRagConfig

public static interface EasyRagConfig.ReuseEmbeddingsConfig
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Whether or not to reuse embeddings.
    The file path to load/save embeddings, assuming quarkus.langchain4j.easy-rag.reuse-embeddings.enabled == true.
  • Method Details

    • enabled

      @WithDefault("false") boolean enabled()
      Whether or not to reuse embeddings. Defaults to false.
    • file

      @WithDefault("easy-rag-embeddings.json") String file()
      The file path to load/save embeddings, assuming quarkus.langchain4j.easy-rag.reuse-embeddings.enabled == true.

      Defaults to easy-rag-embeddings.json in the current directory.