When calling `.run(a = 0)`, they should be passed on to the exploration function a la ```python def function(params, kwargs): a = kwargs['a'] b = params['b'] if a * b > 0: return {"good" : True} else: return {"good" : False} ````
When calling
.run(a = 0), they should be passed on to the exploration function a la