Hello, Could you please explain the difference bet...
# ask-the-community
f
Hello, Could you please explain the difference between fixed_inputs & default_inputs when doing LP creation? I don’t understand when to use which. Thanks!
Copy code
launch_plan.LaunchPlan.get_or_create(
    workflow=wf, name="your_lp_name_1", default_inputs={"a": 3}, fixed_inputs={"c": "4"}
)
k
you can’t change the value of
c
when you launch the workflow. For
a
, you can still change it, but use the default value if you don’t pass it
e
Fixed means that they can't be overwritten at runtime
This applies to launching them from flytekit or through the UI
f
Thank you @Kevin Su , @Evan Sadler!
151 Views