MCPcopy
hub / github.com/langgenius/dify / patch

Method patch

api/core/helper/ssrf_proxy.py:278–279  ·  view source on GitHub ↗
(self, url: str, max_retries: int = SSRF_DEFAULT_MAX_RETRIES, **kwargs: Any)

Source from the content-addressed store, hash-verified

276 return delete(url=url, max_retries=max_retries, **kwargs)
277
278 def patch(self, url: str, max_retries: int = SSRF_DEFAULT_MAX_RETRIES, **kwargs: Any) -> httpx.Response:
279 return patch(url=url, max_retries=max_retries, **kwargs)
280
281
282def _to_graphon_http_response(response: httpx.Response) -> HttpResponse:

Calls 1

patchFunction · 0.70