MCPcopy Create free account
hub / github.com/anthropics/anthropic-sdk-python / __init__

Method __init__

src/anthropic/_qs.py:23–30  ·  view source on GitHub ↗
(
        self,
        *,
        array_format: ArrayFormat = "repeat",
        nested_format: NestedFormat = "brackets",
    )

Source from the content-addressed store, hash-verified

21 nested_format: NestedFormat
22
23 def __init__(
24 self,
25 *,
26 array_format: ArrayFormat = "repeat",
27 nested_format: NestedFormat = "brackets",
28 ) -> None:
29 self.array_format = array_format
30 self.nested_format = nested_format
31
32 def parse(self, query: str) -> Mapping[str, object]:
33 # Note: custom format syntax is not supported yet

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected