mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
ed58eeb9c5
Moved the following modules to new package langchain-community in a backwards compatible fashion: ``` mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community ``` Moved the following to core ``` mv langchain/langchain/utils/json_schema.py core/langchain_core/utils mv langchain/langchain/utils/html.py core/langchain_core/utils mv langchain/langchain/utils/strings.py core/langchain_core/utils cat langchain/langchain/utils/env.py >> core/langchain_core/utils/env.py rm langchain/langchain/utils/env.py ``` See .scripts/community_split/script_integrations.sh for all changes
54 lines
2.2 KiB
Python
54 lines
2.2 KiB
Python
"""Test functionality of JSON tools."""
|
|
from pathlib import Path
|
|
|
|
from langchain_community.tools.json.tool import JsonSpec
|
|
|
|
|
|
def test_json_spec_from_file(tmp_path: Path) -> None:
|
|
"""Test JsonSpec can be constructed from a file."""
|
|
path = tmp_path / "test.json"
|
|
path.write_text('{"foo": "bar"}')
|
|
spec = JsonSpec.from_file(path)
|
|
assert spec.dict_ == {"foo": "bar"}
|
|
|
|
|
|
def test_json_spec_keys() -> None:
|
|
"""Test JsonSpec can return keys of a dict at given path."""
|
|
spec = JsonSpec(dict_={"foo": "bar", "baz": {"test": {"foo": [1, 2, 3]}}})
|
|
assert spec.keys("data") == "['foo', 'baz']"
|
|
assert "ValueError" in spec.keys('data["foo"]')
|
|
assert spec.keys('data["baz"]') == "['test']"
|
|
assert spec.keys('data["baz"]["test"]') == "['foo']"
|
|
assert "ValueError" in spec.keys('data["baz"]["test"]["foo"]')
|
|
|
|
|
|
def test_json_spec_value() -> None:
|
|
"""Test JsonSpec can return value of a dict at given path."""
|
|
spec = JsonSpec(dict_={"foo": "bar", "baz": {"test": {"foo": [1, 2, 3]}}})
|
|
assert spec.value("data") == "{'foo': 'bar', 'baz': {'test': {'foo': [1, 2, 3]}}}"
|
|
assert spec.value('data["foo"]') == "bar"
|
|
assert spec.value('data["baz"]') == "{'test': {'foo': [1, 2, 3]}}"
|
|
assert spec.value('data["baz"]["test"]') == "{'foo': [1, 2, 3]}"
|
|
assert spec.value('data["baz"]["test"]["foo"]') == "[1, 2, 3]"
|
|
assert spec.value("data['foo']") == "bar"
|
|
assert spec.value("data['baz']") == "{'test': {'foo': [1, 2, 3]}}"
|
|
assert spec.value("data['baz']['test']") == "{'foo': [1, 2, 3]}"
|
|
assert spec.value("data['baz']['test']['foo']") == "[1, 2, 3]"
|
|
|
|
|
|
def test_json_spec_value_max_length() -> None:
|
|
"""Test JsonSpec can return value of a dict at given path."""
|
|
spec = JsonSpec(
|
|
dict_={"foo": "bar", "baz": {"test": {"foo": [1, 2, 3]}}}, max_value_length=5
|
|
)
|
|
assert spec.value('data["foo"]') == "bar"
|
|
assert (
|
|
spec.value('data["baz"]')
|
|
== "Value is a large dictionary, should explore its keys directly"
|
|
)
|
|
assert (
|
|
spec.value('data["baz"]["test"]')
|
|
== "Value is a large dictionary, should explore its keys directly"
|
|
)
|
|
assert spec.value('data["baz"]["test"]["foo"]') == "[1, 2..."
|