diff --git a/python/langsmith/evaluation/_runner.py b/python/langsmith/evaluation/_runner.py index 2232feeff..55f8865cb 100644 --- a/python/langsmith/evaluation/_runner.py +++ b/python/langsmith/evaluation/_runner.py @@ -1928,7 +1928,7 @@ def _evaluators_include_attachments( if evaluators is None: return False - def evaluator_has_attachments(evaluator: Union[EVALUATOR_T, AEVALUATOR_T]) -> bool: + def evaluator_has_attachments(evaluator: Any) -> bool: sig = inspect.signature(evaluator) params = list(sig.parameters.values()) positional_params = [ diff --git a/python/tests/integration_tests/test_client.py b/python/tests/integration_tests/test_client.py index 8adf47182..f5f7ba878 100644 --- a/python/tests/integration_tests/test_client.py +++ b/python/tests/integration_tests/test_client.py @@ -59,7 +59,6 @@ def wait_for( def langchain_client() -> Client: get_env_var.cache_clear() return Client( - api_key="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", info={ "instance_flags": { "dataset_examples_multipart_enabled": True,