mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-15 05:25:55 +08:00
fix(model_runtime): ensure compatibility with O1 models by adjusting token parameters (#10537)
This commit is contained in:
parent
9018ef30fe
commit
867bf70f1a
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user