Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 972 Bytes

File metadata and controls

29 lines (20 loc) · 972 Bytes

OpenAIStreamOptions

Properties

Name Type Description Notes
include_usage bool [optional]

Example

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]