Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.16 KB

File metadata and controls

32 lines (24 loc) · 1.16 KB

AgentSettings

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

Properties

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

Example

from timeweb_cloud_api.models.agent_settings import AgentSettings

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

# convert the object into a dict
agent_settings_dict = agent_settings_instance.to_dict()
# create an instance of AgentSettings from a dict
agent_settings_form_dict = agent_settings.from_dict(agent_settings_dict)

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