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

Class Options

src/opencode_ai/_qs.py:138–150  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

136
137
138class Options:
139 array_format: ArrayFormat
140 nested_format: NestedFormat
141
142 def __init__(
143 self,
144 qs: Querystring = _qs,
145 *,
146 array_format: NotGivenOr[ArrayFormat] = NOT_GIVEN,
147 nested_format: NotGivenOr[NestedFormat] = NOT_GIVEN,
148 ) -> None:
149 self.array_format = qs.array_format if isinstance(array_format, NotGiven) else array_format
150 self.nested_format = qs.nested_format if isinstance(nested_format, NotGiven) else nested_format

Callers 1

stringify_itemsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected