Name | Type | Description | Notes |
---|
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)