CoolFace
Apppublic

ahagestedt/apex-devops

sourceHugging Facemitupdated 6mo agoView on Hugging Face
0likes
apex_devops_environment.py23 linesDownload Raw Back to server
1"""2Apex DevOps Corp QA Environment — OpenEnv Environment subclass.3"""4from __future__ import annotations5 6from pathlib import Path7 8from rl_qa_base.environment import BaseQAEnvironment9 10DATA_PATH = Path(__file__).resolve().parent.parent / "data" / "stratified_benchmark.json"11 12 13class ApexDevopsEnvironment(BaseQAEnvironment):14    """Apex DevOps Corp enterprise QA evaluation environment."""15 16    def __init__(self, transform=None):17        super().__init__(18            enterprise_name="Apex DevOps Corp",19            domain="dev-sim",20            data_path=DATA_PATH,21            transform=transform,22        )23