Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 2.35 KB

PatchedPeriodicAgentCreate.md

File metadata and controls

48 lines (39 loc) · 2.35 KB

PatchedPeriodicAgentCreate

Properties

Name Type Description Notes
id int [optional] [readonly]
mentor int [optional]
title str [optional]
username str [optional] [readonly]
description str [optional]
prompt str Prompt for the periodic agent if any. [optional]
task PeriodicTask [optional]
created_at datetime [optional] [readonly]
modified_at datetime [optional] [readonly]
enabled bool [optional] [readonly]
one_off str [optional] [readonly]
platform_key str [optional] [readonly]
pathway str [optional]
callback_url str [optional]
callback_secret str [optional]
parent_session_id str [optional]
parent_mentor_id int [optional]
previous_agent int Agent that needs to run before the current agent runs. [optional]
previous_agent_status PreviousAgentStatusEnum The status that the previous agent must be in before this agent gets scheduled. * `success` - Success * `error` - Error * `running` - Running * `pending` - Pending [optional]
previous_agent_output str This will be fed into the run of this agent as part of its input prompt. [optional] [readonly]

Example

from iblai.models.patched_periodic_agent_create import PatchedPeriodicAgentCreate

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

# convert the object into a dict
patched_periodic_agent_create_dict = patched_periodic_agent_create_instance.to_dict()
# create an instance of PatchedPeriodicAgentCreate from a dict
patched_periodic_agent_create_from_dict = PatchedPeriodicAgentCreate.from_dict(patched_periodic_agent_create_dict)

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