Spaces:
Running
Running
from langchain.agents import __all__ as agents_all | |
_EXPECTED = [ | |
"Agent", | |
"AgentExecutor", | |
"AgentOutputParser", | |
"AgentType", | |
"BaseMultiActionAgent", | |
"BaseSingleActionAgent", | |
"ConversationalAgent", | |
"ConversationalChatAgent", | |
"LLMSingleActionAgent", | |
"MRKLChain", | |
"ReActChain", | |
"ReActTextWorldAgent", | |
"SelfAskWithSearchChain", | |
"StructuredChatAgent", | |
"Tool", | |
"ZeroShotAgent", | |
"create_csv_agent", | |
"create_json_agent", | |
"create_openapi_agent", | |
"create_pandas_dataframe_agent", | |
"create_pbi_agent", | |
"create_pbi_chat_agent", | |
"create_spark_dataframe_agent", | |
"create_sql_agent", | |
"create_vectorstore_agent", | |
"create_vectorstore_router_agent", | |
"get_all_tool_names", | |
"initialize_agent", | |
"load_agent", | |
"load_huggingface_tool", | |
"load_tools", | |
"tool", | |
] | |
def test_public_api() -> None: | |
"""Test for regressions or changes in the agents public API.""" | |
assert sorted(agents_all) == sorted(_EXPECTED) | |