mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-14 05:16:53 +08:00
fix(model_runtime): ensure compatibility with O1 models by adjusting token parameters (#10537)
This commit is contained in:
@@ -617,6 +617,10 @@ class OpenAILargeLanguageModel(_CommonOpenAI, LargeLanguageModel):
|
|||||||
# o1 compatibility
|
# o1 compatibility
|
||||||
block_as_stream = False
|
block_as_stream = False
|
||||||
if model.startswith("o1"):
|
if model.startswith("o1"):
|
||||||
|
if "max_tokens" in model_parameters:
|
||||||
|
model_parameters["max_completion_tokens"] = model_parameters["max_tokens"]
|
||||||
|
del model_parameters["max_tokens"]
|
||||||
|
|
||||||
if stream:
|
if stream:
|
||||||
block_as_stream = True
|
block_as_stream = True
|
||||||
stream = False
|
stream = False
|
||||||
|
|||||||
Reference in New Issue
Block a user