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

Method open_help

src/opencode_ai/resources/tui.py:149–166  ·  view source on GitHub ↗

Open the help dialog

(
        self,
        *,
        # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
        # The extra values given here take precedence over values defined on the client or passed to this method.
        extra_headers: Headers | None = None,
        extra_query: Query | None = None,
        extra_body: Body | None = None,
        timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
    )

Source from the content-addressed store, hash-verified

147 )
148
149 async def open_help(
150 self,
151 *,
152 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
153 # The extra values given here take precedence over values defined on the client or passed to this method.
154 extra_headers: Headers | None = None,
155 extra_query: Query | None = None,
156 extra_body: Body | None = None,
157 timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
158 ) -> TuiOpenHelpResponse:
159 """Open the help dialog"""
160 return await self._post(
161 "/tui/open-help",
162 options=make_request_options(
163 extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
164 ),
165 cast_to=TuiOpenHelpResponse,
166 )
167
168
169class TuiResourceWithRawResponse:

Callers

nothing calls this directly

Calls 1

make_request_optionsFunction · 0.85

Tested by

no test coverage detected