CoolFace
Apppublic

Teena-priority-agent/priority-task-agent

sourceHugging Facemitupdated 6mo agoView on Hugging Face
1likes
inference.py13 linesDownload Raw Back to root
1from priority_task_env import PriorityTaskEnv2 3env = PriorityTaskEnv()4 5def reset():6    return env.reset()7 8def step(action):9    return env.step(action)10 11 12    13