(self, **kwargs)
| 368 | return self.config.error_log_path.parent / "raw_responses.jsonl" |
| 369 | |
| 370 | def format_message(self, **kwargs) -> dict[str, Any]: |
| 371 | role = kwargs["role"] |
| 372 | content = kwargs.get("content", "") |
| 373 | extra = kwargs.get("extra", {}) |
| 374 | return {"role": role, "content": content, "extra": extra} |
| 375 | |
| 376 | def format_observation_messages( |
| 377 | self, |
no outgoing calls
no test coverage detected