We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 723ef99 commit e847824Copy full SHA for e847824
src/envs/dipg_safety_env/client.py
@@ -6,6 +6,11 @@ def _step_payload(self, action: DIPGAction) -> dict:
6
return {"llm_response": action.llm_response}
7
8
def _parse_result(self, payload: dict) -> StepResult[DIPGObservation]:
9
+ # --- ADD THESE DEBUG LINES ---
10
+ print("--- DEBUG: Raw payload received by client ---")
11
+ print(payload)
12
+ print("-------------------------------------------")
13
+ # -----------------------------
14
obs = DIPGObservation(**payload["observation"])
15
return StepResult(
16
observation=obs,
0 commit comments