mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-05 04:55:14 +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:
@@ -7,14 +7,14 @@ from langchain_community.llms.petals import Petals
|
||||
|
||||
|
||||
def test_api_key_is_string() -> None:
|
||||
llm = Petals(huggingface_api_key="secret-api-key")
|
||||
llm = Petals(huggingface_api_key="secret-api-key") # type: ignore[arg-type, call-arg]
|
||||
assert isinstance(llm.huggingface_api_key, SecretStr)
|
||||
|
||||
|
||||
def test_api_key_masked_when_passed_via_constructor(
|
||||
capsys: CaptureFixture,
|
||||
) -> None:
|
||||
llm = Petals(huggingface_api_key="secret-api-key")
|
||||
llm = Petals(huggingface_api_key="secret-api-key") # type: ignore[arg-type, call-arg]
|
||||
print(llm.huggingface_api_key, end="") # noqa: T201
|
||||
captured = capsys.readouterr()
|
||||
|
||||
@@ -23,6 +23,6 @@ def test_api_key_masked_when_passed_via_constructor(
|
||||
|
||||
def test_gooseai_call() -> None:
|
||||
"""Test valid call to gooseai."""
|
||||
llm = Petals(max_new_tokens=10)
|
||||
llm = Petals(max_new_tokens=10) # type: ignore[call-arg]
|
||||
output = llm.invoke("Say foo:")
|
||||
assert isinstance(output, str)
|
||||
|
Reference in New Issue
Block a user