MCPcopy Create free account
hub / github.com/Tron521/codex-console-temp / options

Method options

src/core/http_client.py:167–169  ·  view source on GitHub ↗

发送 OPTIONS 请求

(self, url: str, **kwargs)

Source from the content-addressed store, hash-verified

165 return self.request("HEAD", url, **kwargs)
166
167 def options(self, url: str, **kwargs) -> Response:
168 """发送 OPTIONS 请求"""
169 return self.request("OPTIONS", url, **kwargs)
170
171 def patch(self, url: str, data: Any = None, json: Any = None, **kwargs) -> Response:
172 """发送 PATCH 请求"""

Calls 1

requestMethod · 0.95

Tested by

no test coverage detected