All Superinterfaces:
Prototype.Api
All Known Implementing Classes:
OracleEmbeddingTableConfig.BuilderBase.OracleEmbeddingTableConfigImpl

public interface OracleEmbeddingTableConfig extends Prototype.Api
Configuration for the Oracle embedding store, OracleEmbeddingStore.
See Also:
  • Field Details

  • Method Details

    • builder

      Create a new fluent API builder to customize configuration.
      Returns:
      a new builder
    • builder

      Create a new fluent API builder from an existing instance.
      Parameters:
      instance - an existing instance used as a base for the builder
      Returns:
      a builder based on an instance
    • create

      static OracleEmbeddingTableConfig create(Config config)
      Create a new instance from configuration.
      Parameters:
      config - used to configure the new instance
      Returns:
      a new instance configured from configuration
    • create

      static OracleEmbeddingTableConfig create()
      Create a new instance with default values.
      Returns:
      a new instance
    • createOption

      Optional<dev.langchain4j.store.embedding.oracle.CreateOption> createOption()
      The create option, which defines the behavior when creating the embedding table.
      Returns:
      an Optional containing the create option if set; otherwise, an empty Optional
    • name

      Optional<String> name()
      The name of the embedding table.
      Returns:
      an Optional containing the table name if set; otherwise, an empty Optional
    • idColumn

      Optional<String> idColumn()
      The name of the ID column in the embedding table.
      Returns:
      an Optional containing the ID column name if set; otherwise, an empty Optional
    • embeddingColumn

      Optional<String> embeddingColumn()
      The name of the embedding column in the embedding table.
      Returns:
      an Optional containing the embedding column name if set; otherwise, an empty Optional
    • textColumn

      Optional<String> textColumn()
      The name of the text column in the embedding table.
      Returns:
      an Optional containing the text column name if set; otherwise, an empty Optional
    • metadataColumn

      Optional<String> metadataColumn()
      The name of the metadata column in the embedding table.
      Returns:
      an Optional containing the metadata column name if set; otherwise, an empty Optional