Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.26 KB

File metadata and controls

31 lines (23 loc) · 1.26 KB

ModelParamsInfo

Информация о доступных параметрах модели с их ограничениями

Properties

Name Type Description Notes
temperature ModelParamsInfoTemperature [optional]
max_tokens ModelParamsInfoMaxTokens [optional]
reasoning_effort ModelParamsInfoReasoningEffort [optional]

Example

from timeweb_cloud_api.models.model_params_info import ModelParamsInfo

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

# convert the object into a dict
model_params_info_dict = model_params_info_instance.to_dict()
# create an instance of ModelParamsInfo from a dict
model_params_info_form_dict = model_params_info.from_dict(model_params_info_dict)

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