Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

File metadata and controls

32 lines (23 loc) · 1.22 KB

Embeddings200Response

Properties

Name Type Description Notes
embeddings Embeddings200ResponseEmbeddings
model str Model used to generate embeddings
dimension int Dimensionality of each embedding vector
usage Embeddings200ResponseUsage

Example

from quantcdn.models.embeddings200_response import Embeddings200Response

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

# convert the object into a dict
embeddings200_response_dict = embeddings200_response_instance.to_dict()
# create an instance of Embeddings200Response from a dict
embeddings200_response_from_dict = Embeddings200Response.from_dict(embeddings200_response_dict)

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