standard-tests: rename langchain_standard_tests to langchain_tests, release 0.3.2 (#28203)

This commit is contained in:
Erick Friis
2024-11-18 19:10:39 -08:00
committed by GitHub
parent 24eea2e398
commit 0dbaf05bb7
60 changed files with 70 additions and 83 deletions

View File

@@ -395,7 +395,7 @@ def test_json_mode_structured_output() -> None:
def test_tool_calling_no_arguments() -> None:
# Note: this is a variant of a test in langchain_standard_tests
# Note: this is a variant of a test in langchain_tests
# that as of 2024-08-19 fails with "Failed to call a function. Please
# adjust your prompt." when `tool_choice="any"` is specified, but
# passes when `tool_choice` is not specified.

View File

@@ -5,7 +5,7 @@ from typing import Optional, Type
import pytest
from langchain_core.language_models import BaseChatModel
from langchain_core.rate_limiters import InMemoryRateLimiter
from langchain_standard_tests.integration_tests import (
from langchain_tests.integration_tests import (
ChatModelIntegrationTests,
)

View File

@@ -3,7 +3,7 @@
from typing import Type
from langchain_core.language_models import BaseChatModel
from langchain_standard_tests.unit_tests.chat_models import (
from langchain_tests.unit_tests.chat_models import (
ChatModelUnitTests,
)