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

Method open_help

src/opencode_ai/resources/tui.py:77–94  ·  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

75 )
76
77 def open_help(
78 self,
79 *,
80 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
81 # The extra values given here take precedence over values defined on the client or passed to this method.
82 extra_headers: Headers | None = None,
83 extra_query: Query | None = None,
84 extra_body: Body | None = None,
85 timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
86 ) -> TuiOpenHelpResponse:
87 """Open the help dialog"""
88 return self._post(
89 "/tui/open-help",
90 options=make_request_options(
91 extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
92 ),
93 cast_to=TuiOpenHelpResponse,
94 )
95
96
97class AsyncTuiResource(AsyncAPIResource):

Calls 1

make_request_optionsFunction · 0.85