Configure Programmed Algorithms as Skill Agents
Create a New Skill Agent
The Python Controller Class
Functions for Training
Initialize your algorithm: the __init__ Function
__init__ Functiondef __init__(self, *args, **kwargs):
self.counter += 1
self.mpc = LinearMPC()Process Observation to Compute Action: the compute_action Function
compute_action FunctionEnd Simulation: the compute_termination Function
compute_termination FunctionDefine Success: the compute_success_criteria Function
compute_success_criteria FunctionFunctions to Manage Information Inside Agent Systems
Transform Sensor Variables: the transform_sensors function
transform_sensors functionFilter the Sensor List: the filtered_sensor_space function
filtered_sensor_space functionPreviousCreate Skill Agents with Rewards Using the SDKNextConfigure API Connections to Third-Party Software as Skill Agents
Last updated