agenticdome-python-sdk 1.0.6__tar.gz → 1.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- agenticdome_python_sdk-1.1.0/LICENSE +14 -0
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/MANIFEST.in +2 -1
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/PKG-INFO +976 -254
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/README.md +973 -253
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_python_sdk.egg-info/PKG-INFO +976 -254
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_python_sdk.egg-info/SOURCES.txt +1 -0
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/agno.py +386 -26
- agenticdome_python_sdk-1.1.0/agenticdome_sdk/aws_bedrock.py +1283 -0
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/client.py +43 -25
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/crewai.py +507 -36
- agenticdome_python_sdk-1.1.0/agenticdome_sdk/google_adk.py +1177 -0
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/langgraph.py +702 -29
- agenticdome_python_sdk-1.1.0/agenticdome_sdk/llamaindex.py +964 -0
- agenticdome_python_sdk-1.1.0/agenticdome_sdk/mcp_host.py +1329 -0
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/microsoft_agent_framework.py +597 -46
- agenticdome_python_sdk-1.1.0/agenticdome_sdk/microsoft_ai_foundry.py +1241 -0
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/openai_agents.py +395 -23
- agenticdome_python_sdk-1.1.0/agenticdome_sdk/pydantic.py +1392 -0
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/agno_lateral_refund.py +6 -4
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/ai_foundry_callback_export.py +7 -3
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/attack_demo.py +3 -3
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/crewai_lateral_refund.py +6 -4
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/mcp_remote_patch.py +6 -4
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/mesh_output_redaction.py +6 -4
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/microsoft_metadata_exfil.py +6 -4
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/salesforce_hidden_bcc.py +6 -4
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/servicenow_delete_logs.py +6 -4
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/pyproject.toml +1 -1
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/setup.py +3 -3
- agenticdome_python_sdk-1.1.0/tests/test_agno_integration.py +334 -0
- agenticdome_python_sdk-1.1.0/tests/test_aws_bedrock_integration.py +405 -0
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/tests/test_client.py +13 -0
- agenticdome_python_sdk-1.1.0/tests/test_crewai_integration.py +254 -0
- agenticdome_python_sdk-1.1.0/tests/test_google_adk_integration.py +296 -0
- agenticdome_python_sdk-1.1.0/tests/test_langgraph_integration.py +349 -0
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/tests/test_llamaindex_integration.py +92 -0
- agenticdome_python_sdk-1.1.0/tests/test_mcp_host_integration.py +393 -0
- agenticdome_python_sdk-1.1.0/tests/test_microsoft_agent_framework_integration.py +321 -0
- agenticdome_python_sdk-1.1.0/tests/test_microsoft_ai_foundry_integration.py +344 -0
- agenticdome_python_sdk-1.1.0/tests/test_openai_agents_integration.py +313 -0
- agenticdome_python_sdk-1.1.0/tests/test_pydanticai_integration.py +259 -0
- agenticdome_python_sdk-1.0.6/agenticdome_sdk/aws_bedrock.py +0 -777
- agenticdome_python_sdk-1.0.6/agenticdome_sdk/google_adk.py +0 -466
- agenticdome_python_sdk-1.0.6/agenticdome_sdk/llamaindex.py +0 -374
- agenticdome_python_sdk-1.0.6/agenticdome_sdk/mcp_host.py +0 -653
- agenticdome_python_sdk-1.0.6/agenticdome_sdk/microsoft_ai_foundry.py +0 -615
- agenticdome_python_sdk-1.0.6/agenticdome_sdk/pydantic.py +0 -944
- agenticdome_python_sdk-1.0.6/tests/test_agno_integration.py +0 -208
- agenticdome_python_sdk-1.0.6/tests/test_aws_bedrock_integration.py +0 -197
- agenticdome_python_sdk-1.0.6/tests/test_crewai_integration.py +0 -121
- agenticdome_python_sdk-1.0.6/tests/test_google_adk_integration.py +0 -129
- agenticdome_python_sdk-1.0.6/tests/test_langgraph_integration.py +0 -140
- agenticdome_python_sdk-1.0.6/tests/test_mcp_host_integration.py +0 -206
- agenticdome_python_sdk-1.0.6/tests/test_microsoft_agent_framework_integration.py +0 -139
- agenticdome_python_sdk-1.0.6/tests/test_microsoft_ai_foundry_integration.py +0 -167
- agenticdome_python_sdk-1.0.6/tests/test_openai_agents_integration.py +0 -200
- agenticdome_python_sdk-1.0.6/tests/test_pydanticai_integration.py +0 -22
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_python_sdk.egg-info/dependency_links.txt +0 -0
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_python_sdk.egg-info/requires.txt +0 -0
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_python_sdk.egg-info/top_level.txt +0 -0
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/__init__.py +0 -0
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/scenarios.py +0 -0
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/crewai_agenticdome_firewall.py +0 -0
- {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/setup.cfg +0 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Copyright (c) AgenticDome. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software and associated documentation files (the "Software") are
|
|
4
|
+
proprietary to AgenticDome.
|
|
5
|
+
|
|
6
|
+
Use, copying, modification, distribution, sublicensing, or resale of the
|
|
7
|
+
Software is permitted only under a written agreement with AgenticDome or terms
|
|
8
|
+
published by AgenticDome for this package.
|
|
9
|
+
|
|
10
|
+
The Software is provided "as is", without warranty of any kind, express or
|
|
11
|
+
implied, including but not limited to the warranties of merchantability, fitness
|
|
12
|
+
for a particular purpose, and noninfringement. In no event shall AgenticDome be
|
|
13
|
+
liable for any claim, damages, or other liability arising from use of the
|
|
14
|
+
Software, whether in an action of contract, tort, or otherwise.
|