def __init__()

in aidial_assistant/open_api/requester.py [0:0]


    def __init__(self, operation: APIOperation, plugin_auth: str | None):
        self.operation = operation
        self.param_mapping = _ParamMapping(
            query_params=operation.query_params,  # type: ignore
            body_params=operation.body_params,  # type: ignore
            path_params=operation.path_params,  # type: ignore
        )
        self.plugin_auth = plugin_auth