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

Function patch

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

Source from the content-addressed store, hash-verified

233
234
235def patch(url: str, max_retries: int = SSRF_DEFAULT_MAX_RETRIES, **kwargs: Any) -> httpx.Response:
236 return make_request("PATCH", url, max_retries=max_retries, **kwargs)
237
238
239def delete(url: str, max_retries: int = SSRF_DEFAULT_MAX_RETRIES, **kwargs: Any) -> httpx.Response:

Calls 1

make_requestFunction · 0.70