Single text string or array of text strings to embed
| Name | Type | Description | Notes |
|---|
from quantcdn.models.embeddings_request_input import EmbeddingsRequestInput
# TODO update the JSON string below
json = "{}"
# create an instance of EmbeddingsRequestInput from a JSON string
embeddings_request_input_instance = EmbeddingsRequestInput.from_json(json)
# print the JSON string representation of the object
print(EmbeddingsRequestInput.to_json())
# convert the object into a dict
embeddings_request_input_dict = embeddings_request_input_instance.to_dict()
# create an instance of EmbeddingsRequestInput from a dict
embeddings_request_input_from_dict = EmbeddingsRequestInput.from_dict(embeddings_request_input_dict)