feat: replace the default model

This commit is contained in:
neal-davis
2025-05-07 10:54:18 +08:00
parent 624082f592
commit b168bf452b

View File

@@ -49,32 +49,32 @@ def construct_society(question: str) -> RolePlaying:
models = { models = {
"user": ModelFactory.create( "user": ModelFactory.create(
model_platform=ModelPlatformType.NOVITA, model_platform=ModelPlatformType.NOVITA,
model_type=ModelType.NOVITA_LLAMA_4_MAVERICK_17B, model_type=ModelType.NOVITA_LLAMA_4_SCOUT_17B,
model_config_dict={"temperature": 0}, model_config_dict={"temperature": 0},
), ),
"assistant": ModelFactory.create( "assistant": ModelFactory.create(
model_platform=ModelPlatformType.NOVITA, model_platform=ModelPlatformType.NOVITA,
model_type=ModelType.NOVITA_LLAMA_4_MAVERICK_17B, model_type=ModelType.NOVITA_LLAMA_4_SCOUT_17B,
model_config_dict={"temperature": 0}, model_config_dict={"temperature": 0},
), ),
"browsing": ModelFactory.create( "browsing": ModelFactory.create(
model_platform=ModelPlatformType.NOVITA, model_platform=ModelPlatformType.NOVITA,
model_type=ModelType.NOVITA_LLAMA_4_MAVERICK_17B, model_type=ModelType.NOVITA_LLAMA_4_SCOUT_17B,
model_config_dict={"temperature": 0}, model_config_dict={"temperature": 0},
), ),
"planning": ModelFactory.create( "planning": ModelFactory.create(
model_platform=ModelPlatformType.NOVITA, model_platform=ModelPlatformType.NOVITA,
model_type=ModelType.NOVITA_LLAMA_4_MAVERICK_17B, model_type=ModelType.NOVITA_LLAMA_4_SCOUT_17B,
model_config_dict={"temperature": 0}, model_config_dict={"temperature": 0},
), ),
"image": ModelFactory.create( "image": ModelFactory.create(
model_platform=ModelPlatformType.NOVITA, model_platform=ModelPlatformType.NOVITA,
model_type=ModelType.NOVITA_LLAMA_4_MAVERICK_17B, model_type=ModelType.NOVITA_LLAMA_4_SCOUT_17B,
model_config_dict={"temperature": 0}, model_config_dict={"temperature": 0},
), ),
"document": ModelFactory.create( "document": ModelFactory.create(
model_platform=ModelPlatformType.NOVITA, model_platform=ModelPlatformType.NOVITA,
model_type=ModelType.NOVITA_LLAMA_4_MAVERICK_17B, model_type=ModelType.NOVITA_LLAMA_4_SCOUT_17B,
model_config_dict={"temperature": 0}, model_config_dict={"temperature": 0},
), ),
} }