Record Class ChromaApi.QueryResponse
java.lang.Object
java.lang.Record
org.springframework.ai.chroma.vectorstore.ChromaApi.QueryResponse
- Record Components:
ids- List of list of document ids. One for each returned document.embeddings- List of list of document embeddings. One for each returned document.documents- List of list of document contents. One for each returned document.metadata- List of list of document metadata. One for each returned document.distances- List of list of search distances. One for each returned document.
- Enclosing class:
ChromaApi
public static record ChromaApi.QueryResponse(List<List<String>> ids, List<List<float[]>> embeddings, List<List<String>> documents, List<List<Map<String,Object>>> metadata, List<List<Double>> distances)
extends Record
A QueryResponse object containing the query results.
- Author:
- Christian Tzolov, EddĂș MelĂ©ndez, Jonghoon Park
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedistancesrecord component.Returns the value of thedocumentsrecord component.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
-
QueryResponse
public QueryResponse(List<List<String>> ids, List<List<float[]>> embeddings, List<List<String>> documents, List<List<Map<String, Object>>> metadata, List<List<Double>> distances) Creates an instance of aQueryResponserecord class.- Parameters:
ids- the value for theidsrecord componentembeddings- the value for theembeddingsrecord componentdocuments- the value for thedocumentsrecord componentmetadata- the value for themetadatarecord componentdistances- the value for thedistancesrecord 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
-
distances
-