in aidial_assistant/open_api/requester.py [0:0]
def deserialize_json_input(self, args: dict) -> dict:
"""Use the serialized typescript dictionary.
Resolve the path, query params dict, and optional requestBody dict.
"""
path = self._construct_path(args)
body_params = self._extract_body_params(args)
query_params = self._extract_query_params(args)
return {
"url": path,
"json": body_params,
"params": query_params,
}