Record Class ChromaApi.AddEmbeddingsRequest
java.lang.Object
java.lang.Record
org.springframework.ai.chroma.vectorstore.ChromaApi.AddEmbeddingsRequest
- Record Components:
ids- The ids of the embeddings to add.embeddings- The embeddings to add.metadata- The metadata to associate with the embeddings. When querying, you can filter on this metadata.documents- The documents contents to associate with the embeddings.
- Enclosing class:
ChromaApi
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedocumentsrecord component.List<float[]> Returns the value of theembeddingsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.ids()Returns the value of theidsrecord component.metadata()Returns the value of themetadatarecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
AddEmbeddingsRequest
public AddEmbeddingsRequest(List<String> ids, List<float[]> embeddings, List<Map<String, Object>> metadata, List<String> documents) Creates an instance of aAddEmbeddingsRequestrecord class.- Parameters:
ids- the value for theidsrecord componentembeddings- the value for theembeddingsrecord componentmetadata- the value for themetadatarecord componentdocuments- the value for thedocumentsrecord component
-
AddEmbeddingsRequest
-
-
Method Details
-
toString
-
hashCode
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
ids
-
embeddings
Returns the value of theembeddingsrecord component.- Returns:
- the value of the
embeddingsrecord component
-
metadata
-
documents
-