| Name |
Type |
Description |
Notes |
| include_usage |
bool |
|
[optional] |
from cms_client.models.open_ai_stream_options import OpenAIStreamOptions
# TODO update the JSON string below
json = "{}"
# create an instance of OpenAIStreamOptions from a JSON string
open_ai_stream_options_instance = OpenAIStreamOptions.from_json(json)
# print the JSON string representation of the object
print(OpenAIStreamOptions.to_json())
# convert the object into a dict
open_ai_stream_options_dict = open_ai_stream_options_instance.to_dict()
# create an instance of OpenAIStreamOptions from a dict
open_ai_stream_options_from_dict = OpenAIStreamOptions.from_dict(open_ai_stream_options_dict)
[Back to Model list] [Back to API list] [Back to README]