Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 875 Bytes

EmbeddingsValue.md

File metadata and controls

28 lines (19 loc) · 875 Bytes

EmbeddingsValue

Properties

Name Type Description Notes

Example

from waylay.services.queries.models.embeddings_value import EmbeddingsValue

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

# convert the object into a dict
embeddings_value_dict = embeddings_value_instance.to_dict()
# create an instance of EmbeddingsValue from a dict
embeddings_value_form_dict = embeddings_value.from_dict(embeddings_value_dict)

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