I linearize the model using SystemModelLinearize, and for 'SymbolicParameters', I don't want to modify the parameters every time, as shown in the red box in the figure. I have an idea to write it in the following form, with the specific code as follows:
model = SystemModel["Model2"];
list = model["TopParameterNames"];
vars = list /. {QuantityVariable[x_, __] :> x} // InputForm
SystemModelLinearize[model,
Method -> {"SymbolicDerivative",
"SymbolicParameters" -> vars}]

How can I modify my code to run correctly?
Attachments: