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

View File

@@ -94,7 +94,7 @@ class LargeLanguageModel(AIModel):
) )
try: 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( result = self._code_block_mode_wrapper(
model=model, model=model,
credentials=credentials, credentials=credentials,