Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.15 KB

File metadata and controls

29 lines (20 loc) · 1.15 KB

Embeddings200ResponseEmbeddings

Vector embeddings for the input text(s). Single array for string input, array of arrays for batch input.

Properties

Name Type Description Notes

Example

from quantcdn.models.embeddings200_response_embeddings import Embeddings200ResponseEmbeddings

# TODO update the JSON string below
json = "{}"
# create an instance of Embeddings200ResponseEmbeddings from a JSON string
embeddings200_response_embeddings_instance = Embeddings200ResponseEmbeddings.from_json(json)
# print the JSON string representation of the object
print(Embeddings200ResponseEmbeddings.to_json())

# convert the object into a dict
embeddings200_response_embeddings_dict = embeddings200_response_embeddings_instance.to_dict()
# create an instance of Embeddings200ResponseEmbeddings from a dict
embeddings200_response_embeddings_from_dict = Embeddings200ResponseEmbeddings.from_dict(embeddings200_response_embeddings_dict)

[Back to Model list] [Back to API list] [Back to README]