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

This commit is contained in:
非法操作 2024-10-10 10:07:21 +08:00 committed by GitHub
parent b279d19040
commit 499cc57082
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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,