MCPcopy Create free account
hub / github.com/anomalyco/opencode-sdk-python / AppResourceWithRawResponse

Class AppResourceWithRawResponse

src/opencode_ai/resources/app.py:327–345  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

325
326
327class AppResourceWithRawResponse:
328 def __init__(self, app: AppResource) -> None:
329 self._app = app
330
331 self.get = to_raw_response_wrapper(
332 app.get,
333 )
334 self.init = to_raw_response_wrapper(
335 app.init,
336 )
337 self.log = to_raw_response_wrapper(
338 app.log,
339 )
340 self.modes = to_raw_response_wrapper(
341 app.modes,
342 )
343 self.providers = to_raw_response_wrapper(
344 app.providers,
345 )
346
347
348class AsyncAppResourceWithRawResponse:

Callers 1

with_raw_responseMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected