workflow-twin / baselines /rl_agents.py
NDGCodes's picture
fix repo structure for HF
1a692ce
raw
history blame contribute delete
231 Bytes
class PlaceholderRLAgent:
def __init__(self, name: str = "ppo-placeholder") -> None:
self.name = name
def act(self, observation: dict) -> dict:
return {"action_type": "triage", "note": f"{self.name}-stub"}