Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 910 Bytes

File metadata and controls

29 lines (20 loc) · 910 Bytes

ConfigureRequest

Properties

Name Type Description Notes
embedding_model str

Example

from aerostack.models.configure_request import ConfigureRequest

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

# convert the object into a dict
configure_request_dict = configure_request_instance.to_dict()
# create an instance of ConfigureRequest from a dict
configure_request_form_dict = configure_request.from_dict(configure_request_dict)

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