@<1797800418953138176:profile|ScrawnyCrocodile51> , you can edit the hyper params when a task is in draft mode
PROJECT_NAME = "test"
TASK_NAME = "test_connect"
QUEUE_NAME = "default"
task = Task.init(project_name=PROJECT_NAME, task_name=TASK_NAME)
config = {
"name": "foo",
"arg1": "bar",
}
task.connect(config)
task.execute_remotely(queue_name=QUEUE_NAME)
# ------------- end of setup -------------
def dummy_op(config):
pprint(config)
return config
dummy_op(config)
Sreenshot also provided to show what "edit" button only appear in user property not hyperparamter

Thanks John! This is exactly it! need to reset the task first then the edit feature will show up