I have an `op` that currently receives some parame...
# ask-community
b
I have an
op
that currently receives some parameters, and I’m seeing that in able to dynamically configure these parameters on my schedule I need to use the config_schema attribute of the
op
decorator. Is this the only way? Dagster can’t infer the inputs needed by an op by the method signature?
🌈 1
Right now on the launchpad I call it with:
Copy code
inputs:
  foo: bar
  bar: foo
And I’m trying to create a dynamic schedule with:
Copy code
run_config={
            "ops": {
                "my_op": {
                    "config": {
                        "inputs": {
                            "foo": "bar",
                            "bar": "foo,
                        },
                    }
                }
            }
        },
Okay, that was probably a misunderstanding of docs of my part!
Copy code
run_config={
  "inputs": {
    "foo": "bar"
    "bar": "foo",
   },
},
was enough docster
🎉 1