소스 검색

fix:change azure openai api_version default value to 2024-02-15-preview (#2797)

呆萌闷油瓶 1 년 전
부모
커밋
e5e97c0a0a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      api/core/model_runtime/model_providers/azure_openai/_constant.py

+ 1 - 1
api/core/model_runtime/model_providers/azure_openai/_constant.py

@@ -14,7 +14,7 @@ from core.model_runtime.entities.model_entities import (
     PriceConfig,
 )
 
-AZURE_OPENAI_API_VERSION = '2023-12-01-preview'
+AZURE_OPENAI_API_VERSION = '2024-02-15-preview'
 
 
 def _get_max_tokens(default: int, min_val: int, max_val: int) -> ParameterRule: