Record Class ChromaApi.GetEmbeddingsRequest
java.lang.Object
java.lang.Record
org.springframework.ai.chroma.vectorstore.ChromaApi.GetEmbeddingsRequest
- Record Components:
ids- IDs of the embeddings to get.where- Condition to filter results based on metadata values.limit- Limit on the number of collection embeddings to get.offset- Offset on the embeddings to get.include- A list of what to include in the results. Can contain "embeddings", "metadatas", "documents", "distances". Ids are always included. Defaults to [metadatas, documents, distances].
- Enclosing class:
ChromaApi
-
Constructor Summary
ConstructorsConstructorDescriptionGetEmbeddingsRequest(List<String> ids) GetEmbeddingsRequest(List<String> ids, Map<String, Object> where, Integer limit, Integer offset, List<ChromaApi.QueryRequest.Include> include) Creates an instance of aGetEmbeddingsRequestrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal 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.include()Returns the value of theincluderecord component.limit()Returns the value of thelimitrecord component.offset()Returns the value of theoffsetrecord component.final StringtoString()Returns a string representation of this record class.where()Returns the value of thewhererecord component.
-
Constructor Details
-
GetEmbeddingsRequest
-
GetEmbeddingsRequest
-
GetEmbeddingsRequest
-
GetEmbeddingsRequest
-
-
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
-
where
-
limit
-
offset
-
include
-