mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-24 03:52:10 +00:00
community[patch]: upgrade to recent version of mypy (#21616)
This PR upgrades community to a recent version of mypy. It inserts type: ignore on all existing failures.
This commit is contained in:
@@ -12,7 +12,7 @@ from tests.integration_tests.llms.utils import assert_llm_equality
|
||||
|
||||
def test_cohere_call() -> None:
|
||||
"""Test valid call to cohere."""
|
||||
llm = Cohere(max_tokens=10)
|
||||
llm = Cohere(max_tokens=10) # type: ignore[call-arg]
|
||||
output = llm.invoke("Say foo:")
|
||||
assert isinstance(output, str)
|
||||
|
||||
@@ -20,16 +20,16 @@ def test_cohere_call() -> None:
|
||||
def test_cohere_api_key(monkeypatch: MonkeyPatch) -> None:
|
||||
"""Test that cohere api key is a secret key."""
|
||||
# test initialization from init
|
||||
assert isinstance(Cohere(cohere_api_key="1").cohere_api_key, SecretStr)
|
||||
assert isinstance(Cohere(cohere_api_key="1").cohere_api_key, SecretStr) # type: ignore[arg-type, call-arg]
|
||||
|
||||
# test initialization from env variable
|
||||
monkeypatch.setenv("COHERE_API_KEY", "secret-api-key")
|
||||
assert isinstance(Cohere().cohere_api_key, SecretStr)
|
||||
assert isinstance(Cohere().cohere_api_key, SecretStr) # type: ignore[call-arg]
|
||||
|
||||
|
||||
def test_saving_loading_llm(tmp_path: Path) -> None:
|
||||
"""Test saving/loading an Cohere LLM."""
|
||||
llm = Cohere(max_tokens=10)
|
||||
llm = Cohere(max_tokens=10) # type: ignore[call-arg]
|
||||
llm.save(file_path=tmp_path / "cohere.yaml")
|
||||
loaded_llm = load_llm(tmp_path / "cohere.yaml")
|
||||
assert_llm_equality(llm, loaded_llm)
|
||||
|
Reference in New Issue
Block a user