mirror of
https://github.com/langchain-ai/langchain-benchmarks.git
synced 2026-07-01 22:34:02 -04:00
bec40d90ef
Remove old code
17 lines
451 B
Python
17 lines
451 B
Python
from langchain_benchmarks.tool_usage import __all__
|
|
|
|
|
|
def test_public_api() -> None:
|
|
"""Test that the public API is correct."""
|
|
# This test will also fail if __all__ is not sorted.
|
|
# Please keep it sorted!
|
|
assert __all__ == sorted(
|
|
[
|
|
"apply_agent_executor_adapter",
|
|
"get_eval_config",
|
|
"CustomRunnableAgentFactory",
|
|
"StandardAgentFactory",
|
|
],
|
|
key=str.lower,
|
|
)
|