Record Class ChromaApi.GetEmbeddingResponse
java.lang.Object
java.lang.Record
org.springframework.ai.chroma.vectorstore.ChromaApi.GetEmbeddingResponse
- Record Components:
ids- List of document ids. One for each returned document.embeddings- List of document embeddings. One for each returned document.documents- List of document contents. One for each returned document.metadata- List of document metadata. One for each returned document.
- 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
-
GetEmbeddingResponse
public GetEmbeddingResponse(List<String> ids, List<float[]> embeddings, List<String> documents, List<Map<String, String>> metadata) Creates an instance of aGetEmbeddingResponserecord class.- Parameters:
ids- the value for theidsrecord componentembeddings- the value for theembeddingsrecord componentdocuments- the value for thedocumentsrecord componentmetadata- the value for themetadatarecord component
-
-
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
-
documents
-
metadata
-