Public POST method for arbitrary endpoints.
(self, path: str, data: dict | None = None, timeout: float | None = None)
| 142 | raise AgentHTTPError(f"Request failed: {e}") |
| 143 | |
| 144 | def post(self, path: str, data: dict | None = None, timeout: float | None = None) -> dict: |
| 145 | """Public POST method for arbitrary endpoints.""" |
| 146 | return self._post(path, data, timeout=timeout) |
| 147 | |
| 148 | # ========================================================================= |
| 149 | # Capability & Status |