Browse Source

fix: response_format of model_parameters will not be removed (#9148)

tags/0.9.2
非法操作 1 year ago
parent
commit
499cc57082
No account linked to committer's email address

+ 1
- 1
api/core/model_runtime/model_providers/__base/large_language_model.py View File

@@ -94,7 +94,7 @@ class LargeLanguageModel(AIModel):
)

try:
if "response_format" in model_parameters:
if "response_format" in model_parameters and model_parameters["response_format"] in {"JSON", "XML"}:
result = self._code_block_mode_wrapper(
model=model,
credentials=credentials,

Loading…
Cancel
Save