File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1107,22 +1107,22 @@ def create_engine_config(
1107
1107
if self .enable_prompt_adapter else None
1108
1108
1109
1109
if self .structured_output_config is not None :
1110
- logger .warning_once (
1111
- "'structured-output-config ' is specified. Other structured outputs related arguments will be ignored" # noqa: E501
1110
+ logger .info_once (
1111
+ "'structured_output_config ' is specified. Other structured outputs related arguments will be ignored" # noqa: E501
1112
1112
)
1113
1113
structured_output_config = StructuredOutputConfig (
1114
1114
** self .structured_output_config )
1115
1115
else :
1116
1116
# To be removed in v0.10.x
1117
+ # yapf: disable
1117
1118
structured_output_config = StructuredOutputConfig (
1118
1119
backend = self .guided_decoding_backend ,
1119
1120
disable_fallback = self .guided_decoding_disable_fallback ,
1120
1121
disable_any_whitespace = self .guided_decoding_disable_any_whitespace ,
1121
- disable_additional_properties = \
1122
- self .guided_decoding_disable_additional_properties ,
1123
- reasoning_backend = self .reasoning_parser
1124
- if self .enable_reasoning else None ,
1122
+ disable_additional_properties = self .guided_decoding_disable_additional_properties , # noqa: E501
1123
+ reasoning_backend = self .reasoning_parser ,
1125
1124
)
1125
+ # yapf: enable
1126
1126
1127
1127
show_hidden_metrics = False
1128
1128
if self .show_hidden_metrics_for_version is not None :
You can’t perform that action at this time.
0 commit comments