├── .codespellrc ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── docs.yaml │ ├── lint.yaml │ ├── pre-commit-update.yaml │ ├── publish_demo_to_hf_spaces.yaml │ ├── release.yaml │ ├── tests-cookbook.yaml │ ├── tests-docs.yaml │ ├── tests-integration.yaml │ └── tests-unit.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── demo ├── Dockerfile ├── README.md ├── app.py ├── components │ ├── __init__.py │ ├── agent_status.py │ ├── inputs.py │ └── sidebar.py ├── config.py ├── constants.py ├── requirements.txt ├── restart_space.py ├── services │ ├── __init__.py │ └── agent.py └── tools │ ├── __init__.py │ ├── openmeteo.py │ └── openstreetmap.py ├── docs ├── agents │ ├── callbacks.md │ ├── frameworks │ │ ├── agno.md │ │ ├── google_adk.md │ │ ├── langchain.md │ │ ├── llama_index.md │ │ ├── openai.md │ │ ├── smolagents.md │ │ └── tinyagent.md │ ├── index.md │ ├── models.md │ └── tools.md ├── api │ ├── agent.md │ ├── callbacks.md │ ├── config.md │ ├── evaluation.md │ ├── logging.md │ ├── serving.md │ ├── tools.md │ └── tracing.md ├── assets │ ├── custom.css │ └── custom.js ├── cookbook │ ├── a2a_as_tool.ipynb │ ├── agent_with_local_llm.ipynb │ ├── callbacks.ipynb │ ├── mcp_agent.ipynb │ ├── serve_a2a.ipynb │ ├── your_first_agent.ipynb │ └── your_first_agent_evaluation.ipynb ├── evaluation.md ├── images │ ├── any-agent-logo-mark.png │ ├── any-agent_favicon.png │ └── serve_a2a.png ├── index.md ├── serving.md └── tracing.md ├── mkdocs.yml ├── pyproject.toml ├── scripts ├── hooks.py ├── run-mypy.sh └── wake_up_hf_endpoint.py ├── src └── any_agent │ ├── __init__.py │ ├── callbacks │ ├── __init__.py │ ├── base.py │ ├── context.py │ ├── span_end.py │ ├── span_generation │ │ ├── __init__.py │ │ ├── agno.py │ │ ├── base.py │ │ ├── google.py │ │ ├── langchain.py │ │ ├── llama_index.py │ │ ├── openai.py │ │ ├── smolagents.py │ │ └── tinyagent.py │ ├── span_print.py │ └── wrappers │ │ ├── __init__.py │ │ ├── agno.py │ │ ├── google.py │ │ ├── langchain.py │ │ ├── llama_index.py │ │ ├── openai.py │ │ ├── smolagents.py │ │ └── tinyagent.py │ ├── config.py │ ├── evaluation │ ├── __init__.py │ ├── agent_judge.py │ ├── llm_judge.py │ ├── schemas.py │ └── tools.py │ ├── frameworks │ ├── __init__.py │ ├── agno.py │ ├── any_agent.py │ ├── google.py │ ├── langchain.py │ ├── llama_index.py │ ├── openai.py │ ├── smolagents.py │ └── tinyagent.py │ ├── logging.py │ ├── py.typed │ ├── serving │ ├── __init__.py │ ├── a2a │ │ ├── __init__.py │ │ ├── agent_card.py │ │ ├── agent_executor.py │ │ ├── config_a2a.py │ │ ├── context_manager.py │ │ ├── envelope.py │ │ └── server_a2a.py │ ├── mcp │ │ ├── __init__.py │ │ ├── config_mcp.py │ │ └── server_mcp.py │ └── server_handle.py │ ├── testing │ ├── __init__.py │ └── helpers.py │ ├── tools │ ├── __init__.py │ ├── a2a.py │ ├── composio.py │ ├── final_output.py │ ├── mcp │ │ ├── __init__.py │ │ ├── mcp_client.py │ │ └── smolagents_client.py │ ├── user_interaction.py │ ├── web_browsing.py │ └── wrappers.py │ ├── tracing │ ├── __init__.py │ ├── agent_trace.py │ ├── attributes.py │ └── otel_types.py │ ├── utils │ ├── __init__.py │ └── cast.py │ └── vendor │ ├── langchain_any_llm.py │ └── llama_index_utils.py └── tests ├── __init__.py ├── assets ├── AGNO_trace.html ├── AGNO_trace.json ├── GOOGLE_trace.html ├── GOOGLE_trace.json ├── LANGCHAIN_trace.html ├── LANGCHAIN_trace.json ├── LLAMA_INDEX_trace.html ├── LLAMA_INDEX_trace.json ├── OPENAI_trace.html ├── OPENAI_trace.json ├── SMOLAGENTS_trace.html ├── SMOLAGENTS_trace.json ├── TINYAGENT_trace.html └── TINYAGENT_trace.json ├── conftest.py ├── cookbooks └── test_cookbooks.py ├── docs ├── __init__.py └── test_all.py ├── integration ├── __init__.py ├── a2a │ ├── __init__.py │ ├── conftest.py │ ├── test_a2a_serve.py │ ├── test_a2a_tool.py │ ├── test_a2a_tool_multiturn.py │ └── test_push_notification.py ├── conftest.py ├── frameworks │ ├── test_agent.py │ ├── test_error_handling.py │ ├── test_evaluation.py │ └── test_thread_safe.py ├── mcp │ ├── __init__.py │ ├── test_mcp_serve.py │ └── test_mcp_streamable_http.py └── tools │ ├── test_composio.py │ └── test_wrap_tools.py ├── snapshots ├── __snapshots__ │ └── test_trace.ambr └── test_trace.py └── unit ├── __init__.py ├── callbacks ├── span_generation │ └── test_base_span_generation.py ├── test_callbacks.py ├── test_console_print_span.py └── wrappers │ └── test_get_wrapper_and_unwrap.py ├── conftest.py ├── frameworks ├── __init__.py ├── test_agno.py ├── test_any_agent.py ├── test_google.py ├── test_langchain.py ├── test_llama_index.py ├── test_openai.py ├── test_smolagents.py └── test_tinyagent.py ├── serving ├── test_agent_card.py └── test_envelope_creation.py ├── tools ├── __init__.py ├── conftest.py ├── mcp │ ├── __init__.py │ ├── conftest.py │ ├── test_mcp_client.py │ ├── test_mcp_config.py │ └── test_unit_all_mcp.py ├── test_a2a.py ├── test_exception_run.py ├── test_logging.py ├── test_unit_web_browsing.py └── test_unit_wrappers.py ├── tracing └── test_agent_trace.py └── utils └── test_cast.py /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/.codespellrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/.github/workflows/pre-commit-update.yaml -------------------------------------------------------------------------------- /.github/workflows/publish_demo_to_hf_spaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/.github/workflows/publish_demo_to_hf_spaces.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/tests-cookbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/.github/workflows/tests-cookbook.yaml -------------------------------------------------------------------------------- /.github/workflows/tests-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/.github/workflows/tests-docs.yaml -------------------------------------------------------------------------------- /.github/workflows/tests-integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/.github/workflows/tests-integration.yaml -------------------------------------------------------------------------------- /.github/workflows/tests-unit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/.github/workflows/tests-unit.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/README.md -------------------------------------------------------------------------------- /demo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/demo/Dockerfile -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/demo/app.py -------------------------------------------------------------------------------- /demo/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/components/agent_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/demo/components/agent_status.py -------------------------------------------------------------------------------- /demo/components/inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/demo/components/inputs.py -------------------------------------------------------------------------------- /demo/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/demo/components/sidebar.py -------------------------------------------------------------------------------- /demo/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/demo/config.py -------------------------------------------------------------------------------- /demo/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/demo/constants.py -------------------------------------------------------------------------------- /demo/requirements.txt: -------------------------------------------------------------------------------- 1 | any-agent[all]>=1.4.0 2 | geocoder 3 | nest_asyncio 4 | streamlit 5 | -------------------------------------------------------------------------------- /demo/restart_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/demo/restart_space.py -------------------------------------------------------------------------------- /demo/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/services/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/demo/services/agent.py -------------------------------------------------------------------------------- /demo/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/demo/tools/__init__.py -------------------------------------------------------------------------------- /demo/tools/openmeteo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/demo/tools/openmeteo.py -------------------------------------------------------------------------------- /demo/tools/openstreetmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/demo/tools/openstreetmap.py -------------------------------------------------------------------------------- /docs/agents/callbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/agents/callbacks.md -------------------------------------------------------------------------------- /docs/agents/frameworks/agno.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/agents/frameworks/agno.md -------------------------------------------------------------------------------- /docs/agents/frameworks/google_adk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/agents/frameworks/google_adk.md -------------------------------------------------------------------------------- /docs/agents/frameworks/langchain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/agents/frameworks/langchain.md -------------------------------------------------------------------------------- /docs/agents/frameworks/llama_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/agents/frameworks/llama_index.md -------------------------------------------------------------------------------- /docs/agents/frameworks/openai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/agents/frameworks/openai.md -------------------------------------------------------------------------------- /docs/agents/frameworks/smolagents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/agents/frameworks/smolagents.md -------------------------------------------------------------------------------- /docs/agents/frameworks/tinyagent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/agents/frameworks/tinyagent.md -------------------------------------------------------------------------------- /docs/agents/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/agents/index.md -------------------------------------------------------------------------------- /docs/agents/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/agents/models.md -------------------------------------------------------------------------------- /docs/agents/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/agents/tools.md -------------------------------------------------------------------------------- /docs/api/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/api/agent.md -------------------------------------------------------------------------------- /docs/api/callbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/api/callbacks.md -------------------------------------------------------------------------------- /docs/api/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/api/config.md -------------------------------------------------------------------------------- /docs/api/evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/api/evaluation.md -------------------------------------------------------------------------------- /docs/api/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/api/logging.md -------------------------------------------------------------------------------- /docs/api/serving.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/api/serving.md -------------------------------------------------------------------------------- /docs/api/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/api/tools.md -------------------------------------------------------------------------------- /docs/api/tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/api/tracing.md -------------------------------------------------------------------------------- /docs/assets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/assets/custom.css -------------------------------------------------------------------------------- /docs/assets/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/assets/custom.js -------------------------------------------------------------------------------- /docs/cookbook/a2a_as_tool.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/cookbook/a2a_as_tool.ipynb -------------------------------------------------------------------------------- /docs/cookbook/agent_with_local_llm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/cookbook/agent_with_local_llm.ipynb -------------------------------------------------------------------------------- /docs/cookbook/callbacks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/cookbook/callbacks.ipynb -------------------------------------------------------------------------------- /docs/cookbook/mcp_agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/cookbook/mcp_agent.ipynb -------------------------------------------------------------------------------- /docs/cookbook/serve_a2a.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/cookbook/serve_a2a.ipynb -------------------------------------------------------------------------------- /docs/cookbook/your_first_agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/cookbook/your_first_agent.ipynb -------------------------------------------------------------------------------- /docs/cookbook/your_first_agent_evaluation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/cookbook/your_first_agent_evaluation.ipynb -------------------------------------------------------------------------------- /docs/evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/evaluation.md -------------------------------------------------------------------------------- /docs/images/any-agent-logo-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/images/any-agent-logo-mark.png -------------------------------------------------------------------------------- /docs/images/any-agent_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/images/any-agent_favicon.png -------------------------------------------------------------------------------- /docs/images/serve_a2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/images/serve_a2a.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/serving.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/serving.md -------------------------------------------------------------------------------- /docs/tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/docs/tracing.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/scripts/hooks.py -------------------------------------------------------------------------------- /scripts/run-mypy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/scripts/run-mypy.sh -------------------------------------------------------------------------------- /scripts/wake_up_hf_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/scripts/wake_up_hf_endpoint.py -------------------------------------------------------------------------------- /src/any_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/__init__.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/__init__.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/base.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/context.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/span_end.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/span_end.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/span_generation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/span_generation/__init__.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/span_generation/agno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/span_generation/agno.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/span_generation/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/span_generation/base.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/span_generation/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/span_generation/google.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/span_generation/langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/span_generation/langchain.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/span_generation/llama_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/span_generation/llama_index.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/span_generation/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/span_generation/openai.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/span_generation/smolagents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/span_generation/smolagents.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/span_generation/tinyagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/span_generation/tinyagent.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/span_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/span_print.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/wrappers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/wrappers/__init__.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/wrappers/agno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/wrappers/agno.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/wrappers/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/wrappers/google.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/wrappers/langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/wrappers/langchain.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/wrappers/llama_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/wrappers/llama_index.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/wrappers/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/wrappers/openai.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/wrappers/smolagents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/wrappers/smolagents.py -------------------------------------------------------------------------------- /src/any_agent/callbacks/wrappers/tinyagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/callbacks/wrappers/tinyagent.py -------------------------------------------------------------------------------- /src/any_agent/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/config.py -------------------------------------------------------------------------------- /src/any_agent/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/evaluation/__init__.py -------------------------------------------------------------------------------- /src/any_agent/evaluation/agent_judge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/evaluation/agent_judge.py -------------------------------------------------------------------------------- /src/any_agent/evaluation/llm_judge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/evaluation/llm_judge.py -------------------------------------------------------------------------------- /src/any_agent/evaluation/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/evaluation/schemas.py -------------------------------------------------------------------------------- /src/any_agent/evaluation/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/evaluation/tools.py -------------------------------------------------------------------------------- /src/any_agent/frameworks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/any_agent/frameworks/agno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/frameworks/agno.py -------------------------------------------------------------------------------- /src/any_agent/frameworks/any_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/frameworks/any_agent.py -------------------------------------------------------------------------------- /src/any_agent/frameworks/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/frameworks/google.py -------------------------------------------------------------------------------- /src/any_agent/frameworks/langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/frameworks/langchain.py -------------------------------------------------------------------------------- /src/any_agent/frameworks/llama_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/frameworks/llama_index.py -------------------------------------------------------------------------------- /src/any_agent/frameworks/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/frameworks/openai.py -------------------------------------------------------------------------------- /src/any_agent/frameworks/smolagents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/frameworks/smolagents.py -------------------------------------------------------------------------------- /src/any_agent/frameworks/tinyagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/frameworks/tinyagent.py -------------------------------------------------------------------------------- /src/any_agent/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/logging.py -------------------------------------------------------------------------------- /src/any_agent/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/any_agent/serving/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/serving/__init__.py -------------------------------------------------------------------------------- /src/any_agent/serving/a2a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/any_agent/serving/a2a/agent_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/serving/a2a/agent_card.py -------------------------------------------------------------------------------- /src/any_agent/serving/a2a/agent_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/serving/a2a/agent_executor.py -------------------------------------------------------------------------------- /src/any_agent/serving/a2a/config_a2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/serving/a2a/config_a2a.py -------------------------------------------------------------------------------- /src/any_agent/serving/a2a/context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/serving/a2a/context_manager.py -------------------------------------------------------------------------------- /src/any_agent/serving/a2a/envelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/serving/a2a/envelope.py -------------------------------------------------------------------------------- /src/any_agent/serving/a2a/server_a2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/serving/a2a/server_a2a.py -------------------------------------------------------------------------------- /src/any_agent/serving/mcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/any_agent/serving/mcp/config_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/serving/mcp/config_mcp.py -------------------------------------------------------------------------------- /src/any_agent/serving/mcp/server_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/serving/mcp/server_mcp.py -------------------------------------------------------------------------------- /src/any_agent/serving/server_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/serving/server_handle.py -------------------------------------------------------------------------------- /src/any_agent/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/any_agent/testing/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/testing/helpers.py -------------------------------------------------------------------------------- /src/any_agent/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/tools/__init__.py -------------------------------------------------------------------------------- /src/any_agent/tools/a2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/tools/a2a.py -------------------------------------------------------------------------------- /src/any_agent/tools/composio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/tools/composio.py -------------------------------------------------------------------------------- /src/any_agent/tools/final_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/tools/final_output.py -------------------------------------------------------------------------------- /src/any_agent/tools/mcp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/tools/mcp/__init__.py -------------------------------------------------------------------------------- /src/any_agent/tools/mcp/mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/tools/mcp/mcp_client.py -------------------------------------------------------------------------------- /src/any_agent/tools/mcp/smolagents_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/tools/mcp/smolagents_client.py -------------------------------------------------------------------------------- /src/any_agent/tools/user_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/tools/user_interaction.py -------------------------------------------------------------------------------- /src/any_agent/tools/web_browsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/tools/web_browsing.py -------------------------------------------------------------------------------- /src/any_agent/tools/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/tools/wrappers.py -------------------------------------------------------------------------------- /src/any_agent/tracing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/tracing/__init__.py -------------------------------------------------------------------------------- /src/any_agent/tracing/agent_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/tracing/agent_trace.py -------------------------------------------------------------------------------- /src/any_agent/tracing/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/tracing/attributes.py -------------------------------------------------------------------------------- /src/any_agent/tracing/otel_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/tracing/otel_types.py -------------------------------------------------------------------------------- /src/any_agent/utils/__init__.py: -------------------------------------------------------------------------------- 1 | """Utility functions for any-agent.""" 2 | -------------------------------------------------------------------------------- /src/any_agent/utils/cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/utils/cast.py -------------------------------------------------------------------------------- /src/any_agent/vendor/langchain_any_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/vendor/langchain_any_llm.py -------------------------------------------------------------------------------- /src/any_agent/vendor/llama_index_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/src/any_agent/vendor/llama_index_utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/AGNO_trace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/assets/AGNO_trace.html -------------------------------------------------------------------------------- /tests/assets/AGNO_trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/assets/AGNO_trace.json -------------------------------------------------------------------------------- /tests/assets/GOOGLE_trace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/assets/GOOGLE_trace.html -------------------------------------------------------------------------------- /tests/assets/GOOGLE_trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/assets/GOOGLE_trace.json -------------------------------------------------------------------------------- /tests/assets/LANGCHAIN_trace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/assets/LANGCHAIN_trace.html -------------------------------------------------------------------------------- /tests/assets/LANGCHAIN_trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/assets/LANGCHAIN_trace.json -------------------------------------------------------------------------------- /tests/assets/LLAMA_INDEX_trace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/assets/LLAMA_INDEX_trace.html -------------------------------------------------------------------------------- /tests/assets/LLAMA_INDEX_trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/assets/LLAMA_INDEX_trace.json -------------------------------------------------------------------------------- /tests/assets/OPENAI_trace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/assets/OPENAI_trace.html -------------------------------------------------------------------------------- /tests/assets/OPENAI_trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/assets/OPENAI_trace.json -------------------------------------------------------------------------------- /tests/assets/SMOLAGENTS_trace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/assets/SMOLAGENTS_trace.html -------------------------------------------------------------------------------- /tests/assets/SMOLAGENTS_trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/assets/SMOLAGENTS_trace.json -------------------------------------------------------------------------------- /tests/assets/TINYAGENT_trace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/assets/TINYAGENT_trace.html -------------------------------------------------------------------------------- /tests/assets/TINYAGENT_trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/assets/TINYAGENT_trace.json -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/cookbooks/test_cookbooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/cookbooks/test_cookbooks.py -------------------------------------------------------------------------------- /tests/docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/docs/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/docs/test_all.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/a2a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/a2a/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/integration/a2a/conftest.py -------------------------------------------------------------------------------- /tests/integration/a2a/test_a2a_serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/integration/a2a/test_a2a_serve.py -------------------------------------------------------------------------------- /tests/integration/a2a/test_a2a_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/integration/a2a/test_a2a_tool.py -------------------------------------------------------------------------------- /tests/integration/a2a/test_a2a_tool_multiturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/integration/a2a/test_a2a_tool_multiturn.py -------------------------------------------------------------------------------- /tests/integration/a2a/test_push_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/integration/a2a/test_push_notification.py -------------------------------------------------------------------------------- /tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/integration/conftest.py -------------------------------------------------------------------------------- /tests/integration/frameworks/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/integration/frameworks/test_agent.py -------------------------------------------------------------------------------- /tests/integration/frameworks/test_error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/integration/frameworks/test_error_handling.py -------------------------------------------------------------------------------- /tests/integration/frameworks/test_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/integration/frameworks/test_evaluation.py -------------------------------------------------------------------------------- /tests/integration/frameworks/test_thread_safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/integration/frameworks/test_thread_safe.py -------------------------------------------------------------------------------- /tests/integration/mcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/mcp/test_mcp_serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/integration/mcp/test_mcp_serve.py -------------------------------------------------------------------------------- /tests/integration/mcp/test_mcp_streamable_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/integration/mcp/test_mcp_streamable_http.py -------------------------------------------------------------------------------- /tests/integration/tools/test_composio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/integration/tools/test_composio.py -------------------------------------------------------------------------------- /tests/integration/tools/test_wrap_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/integration/tools/test_wrap_tools.py -------------------------------------------------------------------------------- /tests/snapshots/__snapshots__/test_trace.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/snapshots/__snapshots__/test_trace.ambr -------------------------------------------------------------------------------- /tests/snapshots/test_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/snapshots/test_trace.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/callbacks/span_generation/test_base_span_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/callbacks/span_generation/test_base_span_generation.py -------------------------------------------------------------------------------- /tests/unit/callbacks/test_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/callbacks/test_callbacks.py -------------------------------------------------------------------------------- /tests/unit/callbacks/test_console_print_span.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/callbacks/test_console_print_span.py -------------------------------------------------------------------------------- /tests/unit/callbacks/wrappers/test_get_wrapper_and_unwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/callbacks/wrappers/test_get_wrapper_and_unwrap.py -------------------------------------------------------------------------------- /tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/conftest.py -------------------------------------------------------------------------------- /tests/unit/frameworks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/frameworks/test_agno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/frameworks/test_agno.py -------------------------------------------------------------------------------- /tests/unit/frameworks/test_any_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/frameworks/test_any_agent.py -------------------------------------------------------------------------------- /tests/unit/frameworks/test_google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/frameworks/test_google.py -------------------------------------------------------------------------------- /tests/unit/frameworks/test_langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/frameworks/test_langchain.py -------------------------------------------------------------------------------- /tests/unit/frameworks/test_llama_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/frameworks/test_llama_index.py -------------------------------------------------------------------------------- /tests/unit/frameworks/test_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/frameworks/test_openai.py -------------------------------------------------------------------------------- /tests/unit/frameworks/test_smolagents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/frameworks/test_smolagents.py -------------------------------------------------------------------------------- /tests/unit/frameworks/test_tinyagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/frameworks/test_tinyagent.py -------------------------------------------------------------------------------- /tests/unit/serving/test_agent_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/serving/test_agent_card.py -------------------------------------------------------------------------------- /tests/unit/serving/test_envelope_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/serving/test_envelope_creation.py -------------------------------------------------------------------------------- /tests/unit/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/tools/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/tools/conftest.py -------------------------------------------------------------------------------- /tests/unit/tools/mcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/tools/mcp/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/tools/mcp/conftest.py -------------------------------------------------------------------------------- /tests/unit/tools/mcp/test_mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/tools/mcp/test_mcp_client.py -------------------------------------------------------------------------------- /tests/unit/tools/mcp/test_mcp_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/tools/mcp/test_mcp_config.py -------------------------------------------------------------------------------- /tests/unit/tools/mcp/test_unit_all_mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/tools/mcp/test_unit_all_mcp.py -------------------------------------------------------------------------------- /tests/unit/tools/test_a2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/tools/test_a2a.py -------------------------------------------------------------------------------- /tests/unit/tools/test_exception_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/tools/test_exception_run.py -------------------------------------------------------------------------------- /tests/unit/tools/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/tools/test_logging.py -------------------------------------------------------------------------------- /tests/unit/tools/test_unit_web_browsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/tools/test_unit_web_browsing.py -------------------------------------------------------------------------------- /tests/unit/tools/test_unit_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/tools/test_unit_wrappers.py -------------------------------------------------------------------------------- /tests/unit/tracing/test_agent_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/tracing/test_agent_trace.py -------------------------------------------------------------------------------- /tests/unit/utils/test_cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-ai/any-agent/HEAD/tests/unit/utils/test_cast.py --------------------------------------------------------------------------------