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.
Files changed (64) hide show
  1. agenticdome_python_sdk-1.1.0/LICENSE +14 -0
  2. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/MANIFEST.in +2 -1
  3. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/PKG-INFO +976 -254
  4. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/README.md +973 -253
  5. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_python_sdk.egg-info/PKG-INFO +976 -254
  6. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_python_sdk.egg-info/SOURCES.txt +1 -0
  7. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/agno.py +386 -26
  8. agenticdome_python_sdk-1.1.0/agenticdome_sdk/aws_bedrock.py +1283 -0
  9. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/client.py +43 -25
  10. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/crewai.py +507 -36
  11. agenticdome_python_sdk-1.1.0/agenticdome_sdk/google_adk.py +1177 -0
  12. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/langgraph.py +702 -29
  13. agenticdome_python_sdk-1.1.0/agenticdome_sdk/llamaindex.py +964 -0
  14. agenticdome_python_sdk-1.1.0/agenticdome_sdk/mcp_host.py +1329 -0
  15. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/microsoft_agent_framework.py +597 -46
  16. agenticdome_python_sdk-1.1.0/agenticdome_sdk/microsoft_ai_foundry.py +1241 -0
  17. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/openai_agents.py +395 -23
  18. agenticdome_python_sdk-1.1.0/agenticdome_sdk/pydantic.py +1392 -0
  19. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/agno_lateral_refund.py +6 -4
  20. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/ai_foundry_callback_export.py +7 -3
  21. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/attack_demo.py +3 -3
  22. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/crewai_lateral_refund.py +6 -4
  23. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/mcp_remote_patch.py +6 -4
  24. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/mesh_output_redaction.py +6 -4
  25. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/microsoft_metadata_exfil.py +6 -4
  26. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/salesforce_hidden_bcc.py +6 -4
  27. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/servicenow_delete_logs.py +6 -4
  28. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/pyproject.toml +1 -1
  29. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/setup.py +3 -3
  30. agenticdome_python_sdk-1.1.0/tests/test_agno_integration.py +334 -0
  31. agenticdome_python_sdk-1.1.0/tests/test_aws_bedrock_integration.py +405 -0
  32. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/tests/test_client.py +13 -0
  33. agenticdome_python_sdk-1.1.0/tests/test_crewai_integration.py +254 -0
  34. agenticdome_python_sdk-1.1.0/tests/test_google_adk_integration.py +296 -0
  35. agenticdome_python_sdk-1.1.0/tests/test_langgraph_integration.py +349 -0
  36. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/tests/test_llamaindex_integration.py +92 -0
  37. agenticdome_python_sdk-1.1.0/tests/test_mcp_host_integration.py +393 -0
  38. agenticdome_python_sdk-1.1.0/tests/test_microsoft_agent_framework_integration.py +321 -0
  39. agenticdome_python_sdk-1.1.0/tests/test_microsoft_ai_foundry_integration.py +344 -0
  40. agenticdome_python_sdk-1.1.0/tests/test_openai_agents_integration.py +313 -0
  41. agenticdome_python_sdk-1.1.0/tests/test_pydanticai_integration.py +259 -0
  42. agenticdome_python_sdk-1.0.6/agenticdome_sdk/aws_bedrock.py +0 -777
  43. agenticdome_python_sdk-1.0.6/agenticdome_sdk/google_adk.py +0 -466
  44. agenticdome_python_sdk-1.0.6/agenticdome_sdk/llamaindex.py +0 -374
  45. agenticdome_python_sdk-1.0.6/agenticdome_sdk/mcp_host.py +0 -653
  46. agenticdome_python_sdk-1.0.6/agenticdome_sdk/microsoft_ai_foundry.py +0 -615
  47. agenticdome_python_sdk-1.0.6/agenticdome_sdk/pydantic.py +0 -944
  48. agenticdome_python_sdk-1.0.6/tests/test_agno_integration.py +0 -208
  49. agenticdome_python_sdk-1.0.6/tests/test_aws_bedrock_integration.py +0 -197
  50. agenticdome_python_sdk-1.0.6/tests/test_crewai_integration.py +0 -121
  51. agenticdome_python_sdk-1.0.6/tests/test_google_adk_integration.py +0 -129
  52. agenticdome_python_sdk-1.0.6/tests/test_langgraph_integration.py +0 -140
  53. agenticdome_python_sdk-1.0.6/tests/test_mcp_host_integration.py +0 -206
  54. agenticdome_python_sdk-1.0.6/tests/test_microsoft_agent_framework_integration.py +0 -139
  55. agenticdome_python_sdk-1.0.6/tests/test_microsoft_ai_foundry_integration.py +0 -167
  56. agenticdome_python_sdk-1.0.6/tests/test_openai_agents_integration.py +0 -200
  57. agenticdome_python_sdk-1.0.6/tests/test_pydanticai_integration.py +0 -22
  58. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_python_sdk.egg-info/dependency_links.txt +0 -0
  59. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_python_sdk.egg-info/requires.txt +0 -0
  60. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_python_sdk.egg-info/top_level.txt +0 -0
  61. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/__init__.py +0 -0
  62. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/agenticdome_sdk/scenarios.py +0 -0
  63. {agenticdome_python_sdk-1.0.6 → agenticdome_python_sdk-1.1.0}/examples/crewai_agenticdome_firewall.py +0 -0
  64. {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.
@@ -1,4 +1,5 @@
1
1
  include README.md
2
+ include LICENSE
2
3
  include pyproject.toml
3
4
  include setup.py
4
5
 
@@ -7,4 +8,4 @@ recursive-include tests *.py
7
8
 
8
9
  global-exclude __pycache__
9
10
  global-exclude *.py[cod]
10
- global-exclude .DS_Store
11
+ global-exclude .DS_Store