Feat/add 360-zhinao provider (#7069)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import os
|
||||
|
||||
import pytest
|
||||
|
||||
from core.model_runtime.errors.validate import CredentialsValidateFailedError
|
||||
from core.model_runtime.model_providers.zhinao.zhinao import ZhinaoProvider
|
||||
|
||||
|
||||
def test_validate_provider_credentials():
|
||||
provider = ZhinaoProvider()
|
||||
|
||||
with pytest.raises(CredentialsValidateFailedError):
|
||||
provider.validate_provider_credentials(
|
||||
credentials={}
|
||||
)
|
||||
|
||||
provider.validate_provider_credentials(
|
||||
credentials={
|
||||
'api_key': os.environ.get('ZHINAO_API_KEY')
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user