2024-01-02 23:42:00 +08:00
|
|
|
import os
|
|
|
|
|
|
|
|
import pytest
|
2024-04-18 20:24:05 +08:00
|
|
|
|
2024-01-02 23:42:00 +08:00
|
|
|
from core.model_runtime.errors.validate import CredentialsValidateFailedError
|
|
|
|
from core.model_runtime.model_providers.cohere.cohere import CohereProvider
|
|
|
|
|
|
|
|
|
|
|
|
def test_validate_provider_credentials():
|
|
|
|
provider = CohereProvider()
|
|
|
|
|
|
|
|
with pytest.raises(CredentialsValidateFailedError):
|
|
|
|
provider.validate_provider_credentials(
|
|
|
|
credentials={}
|
|
|
|
)
|
|
|
|
|
|
|
|
provider.validate_provider_credentials(
|
|
|
|
credentials={
|
|
|
|
'api_key': os.environ.get('COHERE_API_KEY')
|
|
|
|
}
|
|
|
|
)
|