mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-12 21:11:43 +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:
@@ -11,7 +11,7 @@ from langchain_community.llms.together import Together
|
||||
def test_together_api_key_is_secret_string() -> None:
|
||||
"""Test that the API key is stored as a SecretStr."""
|
||||
llm = Together(
|
||||
together_api_key="secret-api-key",
|
||||
together_api_key="secret-api-key", # type: ignore[arg-type]
|
||||
model="togethercomputer/RedPajama-INCITE-7B-Base",
|
||||
temperature=0.2,
|
||||
max_tokens=250,
|
||||
@@ -24,7 +24,7 @@ def test_together_api_key_masked_when_passed_from_env(
|
||||
) -> None:
|
||||
"""Test that the API key is masked when passed from an environment variable."""
|
||||
monkeypatch.setenv("TOGETHER_API_KEY", "secret-api-key")
|
||||
llm = Together(
|
||||
llm = Together( # type: ignore[call-arg]
|
||||
model="togethercomputer/RedPajama-INCITE-7B-Base",
|
||||
temperature=0.2,
|
||||
max_tokens=250,
|
||||
@@ -40,7 +40,7 @@ def test_together_api_key_masked_when_passed_via_constructor(
|
||||
) -> None:
|
||||
"""Test that the API key is masked when passed via the constructor."""
|
||||
llm = Together(
|
||||
together_api_key="secret-api-key",
|
||||
together_api_key="secret-api-key", # type: ignore[arg-type]
|
||||
model="togethercomputer/RedPajama-INCITE-7B-Base",
|
||||
temperature=0.2,
|
||||
max_tokens=250,
|
||||
@@ -54,7 +54,7 @@ def test_together_api_key_masked_when_passed_via_constructor(
|
||||
def test_together_uses_actual_secret_value_from_secretstr() -> None:
|
||||
"""Test that the actual secret value is correctly retrieved."""
|
||||
llm = Together(
|
||||
together_api_key="secret-api-key",
|
||||
together_api_key="secret-api-key", # type: ignore[arg-type]
|
||||
model="togethercomputer/RedPajama-INCITE-7B-Base",
|
||||
temperature=0.2,
|
||||
max_tokens=250,
|
||||
|
Reference in New Issue
Block a user