Browse Source

raising error if plugin not initialized (#15319)

tags/1.0.1
znn 7 months ago
parent
commit
f8ac382072
No account linked to committer's email address
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      api/core/plugin/entities/plugin.py

+ 3
- 0
api/core/plugin/entities/plugin.py View File

@@ -5,6 +5,7 @@ from collections.abc import Mapping
from typing import Any, Optional

from pydantic import BaseModel, Field, model_validator
from werkzeug.exceptions import NotFound

from core.agent.plugin_entities import AgentStrategyProviderEntity
from core.model_runtime.entities.provider_entities import ProviderEntity
@@ -153,6 +154,8 @@ class GenericProviderID:
return f"{self.organization}/{self.plugin_name}/{self.provider_name}"

def __init__(self, value: str, is_hardcoded: bool = False) -> None:
if not value:
raise NotFound("plugin not found, please add plugin")
# check if the value is a valid plugin id with format: $organization/$plugin_name/$provider_name
if not re.match(r"^[a-z0-9_-]+\/[a-z0-9_-]+\/[a-z0-9_-]+$", value):
# check if matches [a-z0-9_-]+, if yes, append with langgenius/$value/$value

Loading…
Cancel
Save