Record Class InMemoryEmbeddingStoreConfig
java.lang.Object
java.lang.Record
io.micronaut.langchain4j.embedding.InMemoryEmbeddingStoreConfig
- Record Components:
enabled
- Whether it is enabledpath
- The path to the JSON filejson
- The JSON text
@EachProperty("langchain4j.in-memory.embedding-stores")
public record InMemoryEmbeddingStoreConfig(boolean enabled, @Nullable String path, @Nullable String json)
extends Record
Configuration for in-memory stores.
-
Field Summary
-
Constructor Summary
ConstructorDescriptionInMemoryEmbeddingStoreConfig
(boolean enabled, @Nullable String path, @Nullable String json) Creates an instance of aInMemoryEmbeddingStoreConfig
record class. -
Method Summary
Modifier and TypeMethodDescriptionboolean
enabled()
Returns the value of theenabled
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.@Nullable String
json()
Returns the value of thejson
record component.@Nullable String
path()
Returns the value of thepath
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
PREFIX
- See Also:
-
-
Constructor Details
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
enabled
@Bindable(defaultValue="true") public boolean enabled()Returns the value of theenabled
record component.- Returns:
- the value of the
enabled
record component
-
path
Returns the value of thepath
record component.- Returns:
- the value of the
path
record component
-
json
Returns the value of thejson
record component.- Returns:
- the value of the
json
record component
-