Hello, Could you please explain the difference bet...
# flyte-support
s
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"}
)
g
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
b
Fixed means that they can't be overwritten at runtime
This applies to launching them from flytekit or through the UI
s
Thank you @glamorous-carpet-83516 , @billowy-winter-86593!
😊 2
154 Views