Преглед на файлове

Fix: prevent KeyError in validate_api_list by correcting logical check (#23126)

tags/1.7.2
Yongtao Huang преди 3 месеца
родител
ревизия
a51998e4aa
No account linked to committer's email address
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2
    2
      api/services/external_knowledge_service.py

+ 2
- 2
api/services/external_knowledge_service.py Целия файл

@@ -46,9 +46,9 @@ class ExternalDatasetService:
def validate_api_list(cls, api_settings: dict):
if not api_settings:
raise ValueError("api list is empty")
if "endpoint" not in api_settings and not api_settings["endpoint"]:
if not api_settings.get("endpoint"):
raise ValueError("endpoint is required")
if "api_key" not in api_settings and not api_settings["api_key"]:
if not api_settings.get("api_key"):
raise ValueError("api_key is required")

@staticmethod

Loading…
Отказ
Запис