Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 976 Bytes

CreateEmbeddingsInput.md

File metadata and controls

29 lines (20 loc) · 976 Bytes

CreateEmbeddingsInput

Properties

Name Type Description Notes
text str

Example

from wordlift_client.models.create_embeddings_input import CreateEmbeddingsInput

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

# convert the object into a dict
create_embeddings_input_dict = create_embeddings_input_instance.to_dict()
# create an instance of CreateEmbeddingsInput from a dict
create_embeddings_input_from_dict = CreateEmbeddingsInput.from_dict(create_embeddings_input_dict)

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