(url: str, payload: Any)
| 72 | |
| 73 | |
| 74 | def patch_request(url: str, payload: Any) -> Dict[str, Any]: |
| 75 | response = requests.patch(url, headers=HEADERS, json=payload, timeout=60) |
| 76 | response.raise_for_status() |
| 77 | return response.json() |
| 78 | |
| 79 | |
| 80 | async def call_agent_async( |
no test coverage detected