agentx-python 0.6.37__tar.gz → 0.6.38__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.
Potentially problematic release.
This version of agentx-python might be problematic. Click here for more details.
- {agentx_python-0.6.37 → agentx_python-0.6.38}/PKG-INFO +1 -1
- agentx_python-0.6.38/agentx/version.py +1 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx_python.egg-info/PKG-INFO +1 -1
- {agentx_python-0.6.37 → agentx_python-0.6.38}/tests/test_integrations.py +3 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/tests/test_span_tree.py +11 -1
- agentx_python-0.6.37/agentx/version.py +0 -1
- {agentx_python-0.6.37 → agentx_python-0.6.38}/LICENSE +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/README.md +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/__init__.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/agentx.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/cli.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/__init__.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/_term.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/adapters/__init__.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/adapters/http_endpoint.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/adapters/precomputed.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/adapters/raw.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/client.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/datasets.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/evaluation_settings.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/models.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/prompts.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/reporting.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/results.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/runner.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/tool_schemas.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/evaluations/tracing.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/exceptions.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/export.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/feedback.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/integrations/__init__.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/integrations/_traced_call.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/integrations/anthropic.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/integrations/autogen.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/integrations/crewai.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/integrations/databricks.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/integrations/google_adk.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/integrations/google_genai.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/integrations/langchain.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/integrations/litellm.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/integrations/llamaindex.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/integrations/moveworks.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/integrations/openai.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/integrations/openai_agents.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/monitor/__init__.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/monitor/agents.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/monitor/client.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/monitor/judge_scorers.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/monitor/models.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/monitor/online_evaluators.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/monitor/patterns.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/monitor/profile.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/monitor/scorers.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/monitor/sessions.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/monitor/signals.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/outcomes.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/projects.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/py.typed +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/resources/__init__.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/resources/agent.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/resources/conversation.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/resources/workforce.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/traces.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/tracing/__init__.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/tracing/ci_types.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/tracing/ingest_client.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/tracing/tracer.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx/util.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx_python.egg-info/SOURCES.txt +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx_python.egg-info/dependency_links.txt +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx_python.egg-info/entry_points.txt +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx_python.egg-info/not-zip-safe +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx_python.egg-info/requires.txt +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/agentx_python.egg-info/top_level.txt +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/setup.cfg +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/setup.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/tests/test_deep_dive_fixes.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/tests/test_docs_match_sdk.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/tests/test_integration.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/tests/test_judge_scorers.py +0 -0
- {agentx_python-0.6.37 → agentx_python-0.6.38}/tests/test_selfhost_analysis_fallback.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
VERSION = "0.6.38"
|
|
@@ -46,6 +46,9 @@ def make_tracer() -> Tracer:
|
|
|
46
46
|
# ---------------------------------------------------------------------------
|
|
47
47
|
|
|
48
48
|
def test_adk_model_error_is_captured():
|
|
49
|
+
# google-adk is an optional extra; skip like the crewai/litellm/llamaindex/autogen tests
|
|
50
|
+
# below rather than failing on ImportError (importing the module raises when it is absent).
|
|
51
|
+
pytest.importorskip("google.adk")
|
|
49
52
|
from agentx.integrations.google_adk import AgentXADKPlugin
|
|
50
53
|
|
|
51
54
|
tracer = make_tracer()
|
|
@@ -486,6 +486,9 @@ def test_google_adk_emits_real_child_spans():
|
|
|
486
486
|
import asyncio
|
|
487
487
|
import types
|
|
488
488
|
|
|
489
|
+
# google-adk is an optional extra; skip like every other integration test here rather
|
|
490
|
+
# than failing on ImportError (importing the module raises when it is absent).
|
|
491
|
+
pytest.importorskip("google.adk")
|
|
489
492
|
from agentx.integrations.google_adk import AgentXADKPlugin
|
|
490
493
|
|
|
491
494
|
tracer = make_tracer()
|
|
@@ -529,6 +532,7 @@ def test_google_adk_model_error_is_captured():
|
|
|
529
532
|
import asyncio
|
|
530
533
|
import types
|
|
531
534
|
|
|
535
|
+
pytest.importorskip("google.adk")
|
|
532
536
|
from agentx.integrations.google_adk import AgentXADKPlugin
|
|
533
537
|
|
|
534
538
|
tracer = make_tracer()
|
|
@@ -581,7 +585,13 @@ def test_trace_tool_call_emits_real_child_span():
|
|
|
581
585
|
assert child["name"] == "policy_lookup"
|
|
582
586
|
assert child["parent_span_id"] == root["span_id"]
|
|
583
587
|
assert child["output"] == "digital purchases are final"
|
|
584
|
-
|
|
588
|
+
# ...and a summary of it also lands on the ROOT's flat tool_calls list. That dual-write is
|
|
589
|
+
# deliberate (40c6f6e): the child span feeds the trace detail's span tree, while the
|
|
590
|
+
# engine's built-in "Tool failure" check and the dashboard's Tool quality column read the
|
|
591
|
+
# root's flat list - before it, a failed trace_tool_call() was invisible to both surfaces.
|
|
592
|
+
# Asserted positively, and as exactly one entry, so a third write shows up here too.
|
|
593
|
+
assert [tc["name"] for tc in root["tool_calls"]] == ["policy_lookup"]
|
|
594
|
+
assert root["tool_calls"][0]["output"] == "digital purchases are final"
|
|
585
595
|
|
|
586
596
|
|
|
587
597
|
def test_trace_retrieval_emits_real_child_span():
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
VERSION = "0.6.37"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|