Skip to content

Commit

Permalink
fix: can not find model bug (#12051)
Browse files Browse the repository at this point in the history
Signed-off-by: yihong0618 <[email protected]>
  • Loading branch information
yihong0618 authored Dec 25, 2024
1 parent 7a24c95 commit 7da4fb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/core/entities/provider_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ def _get_system_provider_models(
# if llm name not in restricted llm list, remove it
restrict_model_names = [rm.model for rm in restrict_models]
for model in provider_models:
if model.model_type == ModelType.LLM and m.model not in restrict_model_names:
if model.model_type == ModelType.LLM and model.model not in restrict_model_names:
model.status = ModelStatus.NO_PERMISSION
elif not quota_configuration.is_valid:
model.status = ModelStatus.QUOTA_EXCEEDED
Expand Down
4 changes: 2 additions & 2 deletions api/services/entities/model_provider_entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from core.entities.model_entities import (
ModelWithProviderEntity,
ProviderModelWithStatusEntity,
SimpleModelProviderEntity,
)
from core.entities.provider_entities import QuotaConfiguration
from core.model_runtime.entities.common_entities import I18nObject
Expand Down Expand Up @@ -152,7 +151,8 @@ class ModelWithProviderEntityResponse(ModelWithProviderEntity):
Model with provider entity.
"""

provider: SimpleModelProviderEntity
# FIXME type error ignore here
provider: SimpleProviderEntityResponse # type: ignore

def __init__(self, model: ModelWithProviderEntity) -> None:
super().__init__(**model.model_dump())

0 comments on commit 7da4fb6

Please sign in to comment.