Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.28 KB

File metadata and controls

32 lines (24 loc) · 1.28 KB

UpdateAgentSettings

Настройки агента

Properties

Name Type Description Notes
model AgentModelSettings [optional]
system_prompt object Системный промпт [optional]
refine_query object Уточнять ли запрос перед обработкой [optional]
widget AgentSettingsWidget [optional]

Example

from timeweb_cloud_api.models.update_agent_settings import UpdateAgentSettings

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

# convert the object into a dict
update_agent_settings_dict = update_agent_settings_instance.to_dict()
# create an instance of UpdateAgentSettings from a dict
update_agent_settings_form_dict = update_agent_settings.from_dict(update_agent_settings_dict)

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