mirror of
https://github.com/langgenius/dify.git
synced 2025-07-15 13:14:44 +00:00
16 lines
479 B
Python
16 lines
479 B
Python
import os
|
|
|
|
import pytest
|
|
|
|
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")})
|