Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.14 KB

IBLAIPlatformMetaUpdateRequest.md

File metadata and controls

30 lines (21 loc) · 1.14 KB

IBLAIPlatformMetaUpdateRequest

Properties

Name Type Description Notes
active_llm str Active llm [optional]
llms List[str] [optional]

Example

from iblai.models.iblai_platform_meta_update_request import IBLAIPlatformMetaUpdateRequest

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

# convert the object into a dict
iblai_platform_meta_update_request_dict = iblai_platform_meta_update_request_instance.to_dict()
# create an instance of IBLAIPlatformMetaUpdateRequest from a dict
iblai_platform_meta_update_request_from_dict = IBLAIPlatformMetaUpdateRequest.from_dict(iblai_platform_meta_update_request_dict)

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