Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
eyurtsev committed Mar 1, 2024
1 parent 9e7f39b commit 3fcdb6c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
19 changes: 12 additions & 7 deletions libs/community/langchain_community/llms/cohere.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
)
from langchain_core.language_models.llms import LLM
from langchain_core.load.serializable import Serializable
from langchain_core.pydantic_v1 import Extra, Field, root_validator
from langchain_core.utils import get_from_dict_or_env
from langchain_core.pydantic_v1 import Extra, Field, SecretStr, root_validator
from langchain_core.utils import convert_to_secret_str, get_from_dict_or_env
from tenacity import (
before_sleep_log,
retry,
Expand Down Expand Up @@ -73,7 +73,8 @@ class BaseCohere(Serializable):
temperature: float = 0.75
"""A non-negative float that tunes the degree of randomness in generation."""

cohere_api_key: Optional[str] = None
cohere_api_key: Optional[SecretStr] = None
"""Cohere API key. If not provided, will be read from the environment variable."""

stop: Optional[List[str]] = None

Expand All @@ -94,13 +95,17 @@ def validate_environment(cls, values: Dict) -> Dict:
"Please install it with `pip install cohere`."
)
else:
cohere_api_key = get_from_dict_or_env(
values, "cohere_api_key", "COHERE_API_KEY"
values["cohere_api_key"] = convert_to_secret_str(
get_from_dict_or_env(values, "cohere_api_key", "COHERE_API_KEY")
)
client_name = values["user_agent"]
values["client"] = cohere.Client(cohere_api_key, client_name=client_name)
values["client"] = cohere.Client(
api_key=values["cohere_api_key"].get_secret_value(),
client_name=client_name,
)
values["async_client"] = cohere.AsyncClient(
cohere_api_key, client_name=client_name
api_key=values["cohere_api_key"].get_secret_value(),
client_name=client_name,
)
return values

Expand Down
7 changes: 1 addition & 6 deletions libs/community/tests/integration_tests/llms/test_cohere.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,11 @@

from pathlib import Path

<<<<<<< HEAD:libs/langchain/tests/integration_tests/llms/test_cohere.py
from langchain_core.pydantic_v1 import SecretStr
from pytest import MonkeyPatch

from langchain.llms.cohere import Cohere
from langchain.llms.loading import load_llm
from langchain.pydantic_v1 import SecretStr
=======
from langchain_community.llms.cohere import Cohere
from langchain_community.llms.loading import load_llm
>>>>>>> master:libs/community/tests/integration_tests/llms/test_cohere.py
from tests.integration_tests.llms.utils import assert_llm_equality


Expand Down

0 comments on commit 3fcdb6c

Please sign in to comment.