feat: update model version in example cases

This commit is contained in:
Yuhang Zhou
2026-02-15 01:29:11 +08:00
parent ab9e829718
commit d3e34caaa3
3 changed files with 11 additions and 11 deletions

View File

@@ -176,7 +176,7 @@ def construct_workforce() -> Workforce:
coordinator_agent_kwargs = {
"model": ModelFactory.create(
model_platform=ModelPlatformType.OPENAI,
model_type=ModelType.GPT_4O,
model_type=ModelType.GPT_5_2,
model_config_dict={"temperature": 0},
)
}
@@ -184,7 +184,7 @@ def construct_workforce() -> Workforce:
task_agent_kwargs = {
"model": ModelFactory.create(
model_platform=ModelPlatformType.OPENAI,
model_type=ModelType.GPT_4O,
model_type=ModelType.GPT_5_2,
model_config_dict={"temperature": 0},
)
}