You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromiblai.models.patched_periodic_agent_createimportPatchedPeriodicAgentCreate# TODO update the JSON string belowjson="{}"# create an instance of PatchedPeriodicAgentCreate from a JSON stringpatched_periodic_agent_create_instance=PatchedPeriodicAgentCreate.from_json(json)
# print the JSON string representation of the objectprint(PatchedPeriodicAgentCreate.to_json())
# convert the object into a dictpatched_periodic_agent_create_dict=patched_periodic_agent_create_instance.to_dict()
# create an instance of PatchedPeriodicAgentCreate from a dictpatched_periodic_agent_create_from_dict=PatchedPeriodicAgentCreate.from_dict(patched_periodic_agent_create_dict)