Skip to content

v0.3.0: Agent API refactor

Compare
Choose a tag to compare
@github-actions github-actions released this 22 May 18:34
· 230 commits to main since this release

browsergym-experiments

  • Breaking changes

    • Agent API refactor
      # former API
      Agent.action_mapping(action: str) -> str
      Agent.observation_mapping(obs: dict) -> Any
      
      # new API
      Agent.action_set: AbstractActionSet
      Agent.obs_preprocessor(obs: dict) -> Any