Просмотр исходного кода

fix: empty model features (#2330)

tags/0.5.3
Yeuoly 1 год назад
Родитель
Сommit
fce64d760b
Аккаунт пользователя с таким Email не найден
1 измененных файлов: 1 добавлений и 1 удалений
  1. 1
    1
      api/core/app_runner/assistant_app_runner.py

+ 1
- 1
api/core/app_runner/assistant_app_runner.py Просмотреть файл

@@ -199,7 +199,7 @@ class AssistantApplicationRunner(AppRunner):
llm_model = cast(LargeLanguageModel, model_instance.model_type_instance)
model_schema = llm_model.get_model_schema(model_instance.model, model_instance.credentials)

if set([ModelFeature.MULTI_TOOL_CALL, ModelFeature.TOOL_CALL]).intersection(model_schema.features):
if set([ModelFeature.MULTI_TOOL_CALL, ModelFeature.TOOL_CALL]).intersection(model_schema.features or []):
agent_entity.strategy = AgentEntity.Strategy.FUNCTION_CALLING

# start agent runner

Загрузка…
Отмена
Сохранить