bigquery-agent-analytics 0.3.2__tar.gz → 0.3.3__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.
- bigquery_agent_analytics-0.3.3/.claude-plugin/marketplace.json +29 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/.github/workflows/ci.yml +7 -1
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/.github/workflows/producers-ci.yml +17 -3
- bigquery_agent_analytics-0.3.3/.github/workflows/release-tracing.yml +220 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/.github/workflows/release.yml +10 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/CHANGELOG.md +76 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/PKG-INFO +1 -1
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/README.md +1 -1
- bigquery_agent_analytics-0.3.3/docs/blog/images/ca-conversation.png +0 -0
- bigquery_agent_analytics-0.3.3/docs/blog/images/context-graph-flow.png +0 -0
- bigquery_agent_analytics-0.3.3/docs/blog/images/graph-visualization.png +0 -0
- bigquery_agent_analytics-0.3.3/docs/blog/periodic_materialization.md +153 -0
- bigquery_agent_analytics-0.3.3/docs/codelabs/images/Gemini_Generated_Image_2qdbtg2qdbtg2qdb.jpeg +0 -0
- bigquery_agent_analytics-0.3.3/docs/codelabs/images/ca-conversation.png +0 -0
- bigquery_agent_analytics-0.3.3/docs/codelabs/images/context-graph-flow.png +0 -0
- bigquery_agent_analytics-0.3.3/docs/codelabs/images/graph-visualization.png +0 -0
- bigquery_agent_analytics-0.3.3/docs/codelabs/periodic_materialization.md +686 -0
- bigquery_agent_analytics-0.3.3/docs/guides/conversational-analytics-first.md +200 -0
- bigquery_agent_analytics-0.3.3/docs/guides/images/README.md +17 -0
- bigquery_agent_analytics-0.3.3/docs/guides/images/ca-committed-outcomes.png +0 -0
- bigquery_agent_analytics-0.3.3/docs/guides/scheduled-context-graph-deploy.md +231 -0
- bigquery_agent_analytics-0.3.3/docs/superpowers/plans/2026-05-28-bqaa-seed-events.md +904 -0
- bigquery_agent_analytics-0.3.3/docs/superpowers/plans/2026-05-29-decision-realistic-scenario.md +892 -0
- bigquery_agent_analytics-0.3.3/docs/superpowers/specs/2026-05-28-bqaa-seed-events-design.md +208 -0
- bigquery_agent_analytics-0.3.3/docs/superpowers/specs/2026-05-29-decision-realistic-scenario-design.md +131 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/README.md +3 -2
- bigquery_agent_analytics-0.3.3/examples/codelab/periodic_materialization/README.md +48 -0
- bigquery_agent_analytics-0.3.3/examples/codelab/periodic_materialization/binding.yaml +49 -0
- bigquery_agent_analytics-0.3.3/examples/codelab/periodic_materialization/colab_notebook.ipynb +787 -0
- bigquery_agent_analytics-0.3.3/examples/codelab/periodic_materialization/ontology.yaml +36 -0
- bigquery_agent_analytics-0.3.3/examples/codelab/periodic_materialization/property_graph.sql +37 -0
- bigquery_agent_analytics-0.3.3/examples/codelab/periodic_materialization/seed_events.py +51 -0
- bigquery_agent_analytics-0.3.3/examples/codelab/periodic_materialization/table_ddl.sql +34 -0
- bigquery_agent_analytics-0.3.3/examples/context_graph/README.md +403 -0
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/binding.yaml +27 -27
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/example_ontologies/__init__.py +1 -1
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/example_ontologies/simple_request_flow.ttl +4 -4
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/export_events_jsonl.py +3 -3
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/mako_artifacts.py +4 -4
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/mako_demo_agent.py +2 -2
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/ontology_artifacts.py +1 -1
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/periodic_materialization/README.md +58 -12
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/periodic_materialization/build_image.sh +49 -12
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/periodic_materialization/deploy_cloud_run_job.sh +90 -12
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/periodic_materialization/requirements.txt +2 -2
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/periodic_materialization/run_job.py +138 -30
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/periodic_materialization/terraform/README.md +24 -6
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/periodic_materialization/terraform/main.tf +23 -0
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/periodic_materialization/terraform/terraform.tfvars.example +6 -1
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/periodic_materialization/terraform/variables.tf +12 -0
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/property_graph.sql +26 -26
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/reference_extractor.py +1 -1
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/run_agent.py +2 -2
- bigquery_agent_analytics-0.3.3/examples/context_graph/table_ddl.sql +25 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/ontology_graph_v4_demo.ipynb +1 -1
- bigquery_agent_analytics-0.3.3/plugins/claude_code/.claude-plugin/plugin.json +110 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code/.gitignore +5 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code/MARKETPLACE.md +118 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code/README.md +148 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code/commands/bqaa-setup.md +55 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code/hooks/common.sh +38 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code/hooks/notification.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code/hooks/permission_request.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code/hooks/post_tool_use.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code/hooks/pre_tool_use.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code/hooks/session_end.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code/hooks/session_start.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code/hooks/stop.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code/hooks/subagent_stop.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code/hooks/user_prompt_submit.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code/scripts/run_setup_check.sh +50 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/README.md +66 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/.claude-plugin/plugin.json +110 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/MARKETPLACE.md +118 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/README.md +113 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/commands/bqaa-setup.md +55 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/hooks/common.sh +38 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/hooks/notification.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/hooks/permission_request.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/hooks/post_tool_use.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/hooks/pre_tool_use.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/hooks/session_end.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/hooks/session_start.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/hooks/stop.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/hooks/subagent_stop.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/hooks/user_prompt_submit.sh +2 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/scripts/run_setup_check.sh +50 -0
- {bigquery_agent_analytics-0.3.2/producers/src → bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor}/bigquery_agent_analytics_tracing/__init__.py +9 -2
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor/bigquery_agent_analytics_tracing/claude_code.py +702 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor/bigquery_agent_analytics_tracing/setup_check.py +404 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor/bigquery_agent_analytics_tracing-0.1.0.dist-info/METADATA +3 -0
- bigquery_agent_analytics-0.3.3/producers/README.md +79 -0
- bigquery_agent_analytics-0.3.3/producers/RELEASING.md +120 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/producers/pyproject.toml +4 -1
- bigquery_agent_analytics-0.3.3/producers/scripts/build_claude_plugin.py +214 -0
- bigquery_agent_analytics-0.3.3/producers/src/bigquery_agent_analytics_tracing/__init__.py +47 -0
- bigquery_agent_analytics-0.3.3/producers/src/bigquery_agent_analytics_tracing/_utils.py +168 -0
- bigquery_agent_analytics-0.3.3/producers/src/bigquery_agent_analytics_tracing/_writer_identity.py +52 -0
- bigquery_agent_analytics-0.3.3/producers/src/bigquery_agent_analytics_tracing/claude_code.py +702 -0
- bigquery_agent_analytics-0.3.3/producers/src/bigquery_agent_analytics_tracing/config.py +149 -0
- bigquery_agent_analytics-0.3.3/producers/src/bigquery_agent_analytics_tracing/drain.py +668 -0
- bigquery_agent_analytics-0.3.3/producers/src/bigquery_agent_analytics_tracing/logger.py +459 -0
- bigquery_agent_analytics-0.3.3/producers/src/bigquery_agent_analytics_tracing/schema.py +73 -0
- bigquery_agent_analytics-0.3.3/producers/src/bigquery_agent_analytics_tracing/setup_check.py +404 -0
- bigquery_agent_analytics-0.3.3/producers/tests/test_build_claude_plugin.py +632 -0
- bigquery_agent_analytics-0.3.3/producers/tests/test_claude_code.py +623 -0
- bigquery_agent_analytics-0.3.3/producers/tests/test_setup_check.py +428 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/pyproject.toml +2 -1
- bigquery_agent_analytics-0.3.3/scripts/generate_colab_from_codelab.py +601 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/categorical_evaluator.py +47 -26
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/cli.py +219 -12
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/materialize_window.py +128 -14
- bigquery_agent_analytics-0.3.3/src/bigquery_agent_analytics/property_graph_spec.py +117 -0
- bigquery_agent_analytics-0.3.3/src/bigquery_agent_analytics/seed_events.py +563 -0
- bigquery_agent_analytics-0.3.3/src/bigquery_ontology/graph_ddl_parser.py +575 -0
- bigquery_agent_analytics-0.3.3/src/bigquery_ontology/graph_schema_join.py +362 -0
- bigquery_agent_analytics-0.3.3/src/bigquery_ontology/graph_to_spec.py +362 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_binding_explicit_fk_mapping.py +14 -14
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_categorical_evaluator.py +72 -2
- bigquery_agent_analytics-0.3.3/tests/test_cli_bqaa_app.py +400 -0
- bigquery_agent_analytics-0.3.3/tests/test_cli_context_graph_input_modes.py +137 -0
- bigquery_agent_analytics-0.3.3/tests/test_codelab_embedded_artifacts.py +44 -0
- bigquery_agent_analytics-0.3.2/tests/test_migration_v5_ontology_artifacts.py → bigquery_agent_analytics-0.3.3/tests/test_context_graph_ontology_artifacts.py +10 -10
- bigquery_agent_analytics-0.3.2/tests/test_migration_v5_reference_extractor.py → bigquery_agent_analytics-0.3.3/tests/test_context_graph_reference_extractor.py +3 -3
- bigquery_agent_analytics-0.3.3/tests/test_deploy_property_graph_mode.py +171 -0
- bigquery_agent_analytics-0.3.3/tests/test_generate_colab_asides.py +82 -0
- bigquery_agent_analytics-0.3.3/tests/test_generate_colab_images.py +107 -0
- bigquery_agent_analytics-0.3.3/tests/test_graph_ddl_parser.py +409 -0
- bigquery_agent_analytics-0.3.3/tests/test_graph_schema_join.py +304 -0
- bigquery_agent_analytics-0.3.3/tests/test_graph_to_spec.py +307 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_materialize_window.py +66 -7
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_materialize_window_live.py +14 -12
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_property_graph.py +7 -7
- bigquery_agent_analytics-0.3.3/tests/test_property_graph_spec.py +283 -0
- bigquery_agent_analytics-0.3.3/tests/test_run_job_property_graph.py +206 -0
- bigquery_agent_analytics-0.3.3/tests/test_seed_events.py +439 -0
- bigquery_agent_analytics-0.3.3/tests/test_seed_events_wrapper.py +111 -0
- bigquery_agent_analytics-0.3.3/tests/test_terraform_property_graph_mode.py +90 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/README.md +0 -261
- bigquery_agent_analytics-0.3.2/examples/migration_v5/table_ddl.sql +0 -25
- bigquery_agent_analytics-0.3.2/producers/README.md +0 -37
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/.gitignore +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/CODE_OF_CONDUCT.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/CONTRIBUTING.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/LICENSE +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/README.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/SDK.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/SECURITY.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/autoformat.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/dashboard/README.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/dashboard/agent_analytics_dashboard.ipynb +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/dashboard/app.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/dashboard/requirements.txt +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/README.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/continuous_queries/README.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/continuous_queries/bigtable_dashboard.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/continuous_queries/pubsub_alerting.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/continuous_queries/realtime_error_analysis.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/continuous_queries/session_scoring.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/continuous_queries/setup_reservation.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/python_udf/README.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/python_udf/register.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/remote_function/README.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/remote_function/deploy.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/remote_function/dispatch.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/remote_function/main.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/remote_function/register.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/streaming_evaluation/README.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/streaming_evaluation/main.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/streaming_evaluation/requirements.txt +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/streaming_evaluation/setup.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/streaming_evaluation/trigger_query.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/deploy/streaming_evaluation/worker.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/context_graph_v2_design.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/context_graph_v3_design.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/design.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/entity_resolution_primitives.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_bka_measurement.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_bq_bundle_mirror.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_bundle_loader.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_diagnostics.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_orchestrator_swap.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_plan_parser.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_plan_resolver.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_retry_loop.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_revalidate_cli.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_revalidation.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_rollout_guide.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_runtime_fallback.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_runtime_registry.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_runtime_target.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_scaffolding.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_template_renderer.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/hatteras_evaluation.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/implementation_plan_concept_index_runtime.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/implementation_plan_remote_function.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/learning_ontology_and_context_graph.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/ontology/binding-validation.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/ontology/binding.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/ontology/cli.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/ontology/compilation.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/ontology/concept-index.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/ontology/ontology-build.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/ontology/ontology.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/ontology/owl-import.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/ontology/scaffold.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/ontology/validation.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/ontology_graph_v4_design.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/ontology_graph_v5_design.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/ontology_runtime_reader.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/prd_unified_analytics_interface.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/proposal_bigquery_agent_cli.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/python_udf_support_design.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/remote_function_rationale.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/docs/sdk_usage_tracking.md +0 -0
- /bigquery_agent_analytics-0.3.2/examples/migration_v5_demo_notebook.ipynb → /bigquery_agent_analytics-0.3.3/examples/_archive/context_graph_historical_notebook.ipynb +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/.gitignore +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/A2A_JOINT_LINEAGE.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/BQ_STUDIO_WALKTHROUGH.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/DATA_LINEAGE.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/DEMO_NARRATION.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/README.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/analyst_agent/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/analyst_agent/agent.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/analyst_agent/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/analyst_agent/tools.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/bq_studio_queries.gql.tpl +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/build_joint_graph.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/build_org_graphs.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/caller_agent/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/caller_agent/agent.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/caller_agent/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/caller_agent/tools.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/campaigns.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/joint_property_graph.gql.tpl +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/receiver_agent/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/receiver_agent/agent.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/receiver_agent/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/render_queries.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/reset.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/run_analyst_agent.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/run_caller_agent.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/run_e2e_demo.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/run_receiver_server.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/setup.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/smoke_receiver.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/DEMO_NARRATION.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/README.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent/agent.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent/tools.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/config.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/config_loader.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/eval_runner.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/improver_agent.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/prompt_adapter.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/tool_introspection.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/config.json +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/demo.png +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/eval/eval_cases.json +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/eval/generate_traffic.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/eval/operational_metrics.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/eval/run_eval.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/overview.png +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/reset.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/run_cycle.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/run_improvement.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/setup.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/setup_vertex.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/show_prompt.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/ai_classify_side_by_side.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/ai_forecast_side_by_side.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/ai_ml_integration_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/ai_similarity_validation.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/categorical_dashboard.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/categorical_evaluation_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/ci/README.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/ci/evaluate_thresholds.yml +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/ci_eval_pipeline.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/cli_agent_tool.py +0 -0
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/.gitignore +0 -0
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/example_ontologies/simple_request_flow_config.py +0 -0
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/mako_core.ttl +0 -0
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/ontology.yaml +0 -0
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/periodic_materialization/terraform/.gitignore +0 -0
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/periodic_materialization/terraform/outputs.tf +0 -0
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/periodic_materialization/terraform/versions.tf +0 -0
- {bigquery_agent_analytics-0.3.2/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/revalidation_thresholds.json +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/context_graph_adcp_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/continuous_query_alerting.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/dashboard_v2.ipynb +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/dashboard_v2_bigframes.ipynb +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/.gitignore +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/BQ_STUDIO_WALKTHROUGH.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/DATA_LINEAGE.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/DEMO_NARRATION.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/DEMO_QUESTIONS.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/README.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/SETUP_NEW_PROJECT.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/SLIDES.html +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/SLIDES.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/SLIDES.pptx +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/agent/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/agent/agent.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/agent/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/agent/tools.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/bq_studio_queries.gql.tpl +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/build_graph.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/build_rich_graph.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/campaigns.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/property_graph.gql.tpl +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/render_queries.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/reset.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/rich_property_graph.gql.tpl +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/run_agent.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/setup.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/e2e_demo.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/e2e_demo_output.txt +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/e2e_notebook_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/event_semantics_views_bigframes_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/memory_service_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/nba_agent_trace_analysis_notebook.ipynb +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/ontology_graph_v5_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/python_udf_eval_summary.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/python_udf_evaluation.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/python_udf_event_semantics.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/remote_function_dashboard.sql +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/examples/ymgo_graph_spec.yaml +0 -0
- {bigquery_agent_analytics-0.3.2/producers/src → bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor}/bigquery_agent_analytics_tracing/_utils.py +0 -0
- {bigquery_agent_analytics-0.3.2/producers/src → bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor}/bigquery_agent_analytics_tracing/_writer_identity.py +0 -0
- {bigquery_agent_analytics-0.3.2/producers/src → bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor}/bigquery_agent_analytics_tracing/config.py +0 -0
- {bigquery_agent_analytics-0.3.2/producers/src → bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor}/bigquery_agent_analytics_tracing/drain.py +0 -0
- {bigquery_agent_analytics-0.3.2/producers/src → bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor}/bigquery_agent_analytics_tracing/logger.py +0 -0
- {bigquery_agent_analytics-0.3.2/producers/src → bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor}/bigquery_agent_analytics_tracing/schema.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/producers/tests/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/producers/tests/test_config.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/producers/tests/test_drain.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/producers/tests/test_logger_row_shape.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/producers/tests/test_schema.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/scripts/README.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/scripts/latency_report.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/scripts/latency_report.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/scripts/quality_report.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/scripts/quality_report.sh +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/scripts/sample_latency_report.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/scripts/sample_quality_report.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/_deploy_runtime.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/_ontology_routing.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/_streaming_evaluation.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/_telemetry.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ai_ml_integration.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/bigframes_evaluator.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/binding_validation.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/categorical_views.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/client.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/context_graph.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/eval_suite.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/eval_validator.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/evaluators.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/event_semantics.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extracted_models.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/ast_validator.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/bq_bundle_mirror.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/bundle_loader.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/cli_revalidate.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/compiler.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/diagnostics.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/fingerprint.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/manifest.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/measurement.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/plan_parser.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/plan_resolver.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/retry_loop.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/revalidation.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/runtime_fallback.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/runtime_registry.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/smoke_test.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/subprocess_runner.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/template_renderer.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/feedback.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/formatter.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/grader_pipeline.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/graph_validation.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/insights.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/memory_service.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/multi_trial.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ontology_graph.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ontology_materializer.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ontology_models.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ontology_orchestrator.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ontology_property_graph.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ontology_runtime.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ontology_schema_compiler.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/resolved_spec.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/runtime_spec.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/serialization.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/structured_extraction.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/trace.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/trace_evaluator.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ttl_importer.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/udf_kernels.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/udf_sql_templates.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/views.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/_fingerprint.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/binding_loader.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/binding_models.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/cli.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/concept_index.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/docs/user_manual.md +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/graph_ddl_compiler.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/graph_ddl_models.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/ontology_loader.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/ontology_models.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/owl_importer.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/scaffold.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_binding_loader.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_binding_models.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_cli.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_compile_concept_index.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_concept_index.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_fingerprint.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_graph_ddl_compiler.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_ontology_models.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_owl_importer.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_scaffold.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_scaffold_cli.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/fixtures/lineage_sessions.json +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/fixtures/mixed_events.json +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/fixtures/mixed_owl_skos.ttl +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/fixtures/skos_taxonomy.ttl +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/fixtures/test_binding.yaml +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/fixtures/test_combined_spec.yaml +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/fixtures/test_ontology.yaml +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/fixtures/yamo_sample.ttl +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/fixtures_extractor_compilation/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/fixtures_extractor_compilation/bka_decision_inputs.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/fixtures_extractor_compilation/bka_decision_measurement_report.json +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/fixtures_extractor_compilation/bka_decision_template.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/fixtures_extractor_compilation/plan_bka_decision.json +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_abstract_adapter_filter.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_ai_generate_judge_live.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_ai_ml_integration.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_ai_ml_integration_labels.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_bigframes_evaluator.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_binding_validation.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_bridge_hardening.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_categorical_views.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_cli.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_client_labels.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_context_graph.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_context_graph_labels.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_dual_loader.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_eval_suite.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_eval_validator.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_event_semantics.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extract_graph_diagnostics_modes.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extracted_models.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_bka_compile_live.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_bq_bundle_mirror.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_bq_bundle_mirror_live.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_bundle_loader.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_cli_revalidate.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_cli_revalidate_bq_live.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_diagnostics.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_measurement.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_plan_parser.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_plan_resolver.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_retry_loop.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_revalidation.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_runtime_fallback.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_runtime_registry.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_template.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_feedback_labels.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_formatter.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_grader_pipeline.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_graph_validation.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_integration_ontology_binding.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_latency_report_helpers.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_memory_service.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_memory_service_labels.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_multi_trial.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_graph.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_graph_from_bundles_root.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_labels.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_materializer.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_models.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_orchestrator.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_runtime.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_runtime_live.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_schema_compiler.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_owl_import_bridge.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_pr16_fixes.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_pr17_fixes.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_pr19_fixes.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_quality_report_helpers.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_remote_function.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_resolved_spec.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_runtime_factory.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_runtime_spec.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_sdk_client.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_sdk_evaluators.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_sdk_feedback.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_sdk_insights.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_sdk_trace.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_serialization.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_streaming_evaluation.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_surface_tags.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_telemetry.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_trace_evaluator.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_trace_filter_factory.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_udf_kernels.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_udf_sql_generation.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_v5_golden.py +0 -0
- {bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/tests/test_views.py +0 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bqaa-tracing",
|
|
3
|
+
"description": "Claude Code tracing plugins for BigQuery Agent Analytics.",
|
|
4
|
+
"owner": {
|
|
5
|
+
"name": "Google LLC",
|
|
6
|
+
"url": "https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK"
|
|
7
|
+
},
|
|
8
|
+
"plugins": [
|
|
9
|
+
{
|
|
10
|
+
"name": "bigquery-agent-analytics-tracing",
|
|
11
|
+
"description": "Stream Claude Code hook traces to Google BigQuery Agent Analytics agent_events.",
|
|
12
|
+
"version": "0.1.0",
|
|
13
|
+
"source": "./plugins/claude_code_dist/bigquery-agent-analytics-tracing",
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Google LLC"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/tree/main/plugins/claude_code",
|
|
18
|
+
"repository": "https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK",
|
|
19
|
+
"license": "Apache-2.0",
|
|
20
|
+
"keywords": [
|
|
21
|
+
"bigquery",
|
|
22
|
+
"agent-analytics",
|
|
23
|
+
"observability",
|
|
24
|
+
"tracing",
|
|
25
|
+
"claude-code"
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
@@ -41,12 +41,18 @@ jobs:
|
|
|
41
41
|
- name: Run autoformat and check for changes
|
|
42
42
|
run: |
|
|
43
43
|
bash autoformat.sh
|
|
44
|
-
if ! git diff --exit-code src/ tests/ examples/; then
|
|
44
|
+
if ! git diff --exit-code src/ tests/ examples/ scripts/; then
|
|
45
45
|
echo ""
|
|
46
46
|
echo "::error::Code is not formatted. Run 'bash autoformat.sh' and commit the changes."
|
|
47
47
|
exit 1
|
|
48
48
|
fi
|
|
49
49
|
|
|
50
|
+
- name: Check codelab notebook is in sync with markdown source
|
|
51
|
+
run: |
|
|
52
|
+
python scripts/generate_colab_from_codelab.py --check \
|
|
53
|
+
docs/codelabs/periodic_materialization.md \
|
|
54
|
+
examples/codelab/periodic_materialization/colab_notebook.ipynb
|
|
55
|
+
|
|
50
56
|
test:
|
|
51
57
|
name: Test (Python ${{ matrix.python-version }})
|
|
52
58
|
runs-on: ubuntu-latest
|
{bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/.github/workflows/producers-ci.yml
RENAMED
|
@@ -19,11 +19,13 @@ on:
|
|
|
19
19
|
branches: [main]
|
|
20
20
|
paths:
|
|
21
21
|
- 'producers/**'
|
|
22
|
+
- 'plugins/claude_code/**'
|
|
22
23
|
- '.github/workflows/producers-ci.yml'
|
|
23
24
|
pull_request:
|
|
24
25
|
branches: [main]
|
|
25
26
|
paths:
|
|
26
27
|
- 'producers/**'
|
|
28
|
+
- 'plugins/claude_code/**'
|
|
27
29
|
- '.github/workflows/producers-ci.yml'
|
|
28
30
|
|
|
29
31
|
concurrency:
|
|
@@ -49,10 +51,10 @@ jobs:
|
|
|
49
51
|
run: pip install "pyink>=24.3.0" "isort>=5.0"
|
|
50
52
|
|
|
51
53
|
- name: isort --check
|
|
52
|
-
run: isort --check-only src/ tests/
|
|
54
|
+
run: isort --check-only src/ tests/ scripts/
|
|
53
55
|
|
|
54
56
|
- name: pyink --check
|
|
55
|
-
run: pyink --check src/ tests/
|
|
57
|
+
run: pyink --check src/ tests/ scripts/
|
|
56
58
|
|
|
57
59
|
test:
|
|
58
60
|
name: Producers test (Python ${{ matrix.python-version }})
|
|
@@ -91,7 +93,19 @@ jobs:
|
|
|
91
93
|
- name: Build sdist and wheel
|
|
92
94
|
run: python -m build
|
|
93
95
|
|
|
94
|
-
- name: List
|
|
96
|
+
- name: List wheel/sdist
|
|
97
|
+
run: ls -la dist/
|
|
98
|
+
|
|
99
|
+
- name: Install built wheel for plugin build
|
|
100
|
+
# Make `importlib.metadata.version` resolve correctly so the
|
|
101
|
+
# plugin manifest gets a real version stamped in, not the
|
|
102
|
+
# pyproject fallback.
|
|
103
|
+
run: pip install dist/bigquery_agent_analytics_tracing-*.whl
|
|
104
|
+
|
|
105
|
+
- name: Build Claude Code plugin artifact
|
|
106
|
+
run: python scripts/build_claude_plugin.py
|
|
107
|
+
|
|
108
|
+
- name: List plugin artifact
|
|
95
109
|
run: ls -la dist/
|
|
96
110
|
|
|
97
111
|
- uses: actions/upload-artifact@v4
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
# Copyright 2026 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
# Release the `bigquery-agent-analytics-tracing` package and the
|
|
16
|
+
# Claude Code plugin tarball.
|
|
17
|
+
#
|
|
18
|
+
# Trigger: push a `tracing-vX.Y.Z` tag whose version matches
|
|
19
|
+
# `producers/pyproject.toml`'s `[project].version`. The tag namespace
|
|
20
|
+
# is distinct from the root `vX.Y.Z` tags used by the consumption SDK
|
|
21
|
+
# so the two release pipelines never collide.
|
|
22
|
+
#
|
|
23
|
+
# Pipeline:
|
|
24
|
+
# verify - tag matches pyproject; run producer tests on 3.12
|
|
25
|
+
# build - wheel + sdist + Claude Code plugin tarball
|
|
26
|
+
# github-release - attach all artifacts to the GitHub release for
|
|
27
|
+
# this tag, with auto-generated release notes
|
|
28
|
+
# publish-testpypi - upload wheel + sdist to TestPyPI via Trusted
|
|
29
|
+
# Publishing (no secrets)
|
|
30
|
+
# publish-pypi - same, to PyPI (gated by the `pypi` environment
|
|
31
|
+
# so maintainers can require manual approval)
|
|
32
|
+
#
|
|
33
|
+
# Trusted Publishing setup (one-time, on the PyPI side):
|
|
34
|
+
# - https://docs.pypi.org/trusted-publishers/adding-a-publisher/
|
|
35
|
+
# - Project: bigquery-agent-analytics-tracing
|
|
36
|
+
# - Owner: GoogleCloudPlatform
|
|
37
|
+
# - Repo: BigQuery-Agent-Analytics-SDK
|
|
38
|
+
# - Workflow: release-tracing.yml
|
|
39
|
+
# - Environment: testpypi / pypi (match the `environment:` blocks
|
|
40
|
+
# below). Until the project + trusted publisher are configured on
|
|
41
|
+
# TestPyPI/PyPI, the publish jobs will fail with a clear error —
|
|
42
|
+
# `build` and `github-release` still produce + attach artifacts so
|
|
43
|
+
# the release tag is not blocked.
|
|
44
|
+
|
|
45
|
+
name: Release tracing
|
|
46
|
+
|
|
47
|
+
on:
|
|
48
|
+
push:
|
|
49
|
+
tags:
|
|
50
|
+
- 'tracing-v*'
|
|
51
|
+
|
|
52
|
+
concurrency:
|
|
53
|
+
group: release-tracing-${{ github.ref }}
|
|
54
|
+
cancel-in-progress: false
|
|
55
|
+
|
|
56
|
+
jobs:
|
|
57
|
+
verify:
|
|
58
|
+
name: Verify version + tests
|
|
59
|
+
runs-on: ubuntu-latest
|
|
60
|
+
defaults:
|
|
61
|
+
run:
|
|
62
|
+
working-directory: producers
|
|
63
|
+
outputs:
|
|
64
|
+
version: ${{ steps.version.outputs.version }}
|
|
65
|
+
steps:
|
|
66
|
+
- uses: actions/checkout@v4
|
|
67
|
+
|
|
68
|
+
- uses: actions/setup-python@v5
|
|
69
|
+
with:
|
|
70
|
+
python-version: "3.12"
|
|
71
|
+
|
|
72
|
+
- name: Verify tag matches pyproject version
|
|
73
|
+
id: version
|
|
74
|
+
run: |
|
|
75
|
+
PKG_VERSION=$(python -c "import tomllib; print(tomllib.load(open('pyproject.toml','rb'))['project']['version'])")
|
|
76
|
+
TAG="${GITHUB_REF_NAME#tracing-v}"
|
|
77
|
+
echo "Package version: ${PKG_VERSION}"
|
|
78
|
+
echo "Release tag: ${GITHUB_REF_NAME} (extracted: ${TAG})"
|
|
79
|
+
if [ "${PKG_VERSION}" != "${TAG}" ]; then
|
|
80
|
+
echo "::error::Version mismatch: producers/pyproject.toml has ${PKG_VERSION} but tag is ${GITHUB_REF_NAME} (expected tracing-v${PKG_VERSION})"
|
|
81
|
+
exit 1
|
|
82
|
+
fi
|
|
83
|
+
echo "version=${PKG_VERSION}" >> "$GITHUB_OUTPUT"
|
|
84
|
+
|
|
85
|
+
- name: Install producers with dev deps
|
|
86
|
+
run: pip install -e ".[dev]"
|
|
87
|
+
|
|
88
|
+
- name: Run tests
|
|
89
|
+
run: pytest --tb=short -q
|
|
90
|
+
|
|
91
|
+
build:
|
|
92
|
+
name: Build wheel + plugin tarball
|
|
93
|
+
runs-on: ubuntu-latest
|
|
94
|
+
needs: verify
|
|
95
|
+
defaults:
|
|
96
|
+
run:
|
|
97
|
+
working-directory: producers
|
|
98
|
+
steps:
|
|
99
|
+
- uses: actions/checkout@v4
|
|
100
|
+
|
|
101
|
+
- uses: actions/setup-python@v5
|
|
102
|
+
with:
|
|
103
|
+
python-version: "3.12"
|
|
104
|
+
|
|
105
|
+
- name: Install build tools
|
|
106
|
+
run: pip install build
|
|
107
|
+
|
|
108
|
+
- name: Build wheel and sdist
|
|
109
|
+
run: python -m build
|
|
110
|
+
|
|
111
|
+
- name: Install built wheel
|
|
112
|
+
# importlib.metadata.version() needs to see the dist-info so
|
|
113
|
+
# build_claude_plugin.py stamps the real version (not the
|
|
114
|
+
# pyproject fallback). Installing the wheel mirrors the
|
|
115
|
+
# producers-ci build path exactly.
|
|
116
|
+
run: pip install dist/bigquery_agent_analytics_tracing-*.whl
|
|
117
|
+
|
|
118
|
+
- name: Build Claude Code plugin tarball
|
|
119
|
+
run: python scripts/build_claude_plugin.py
|
|
120
|
+
|
|
121
|
+
- name: Verify all expected artifacts are present
|
|
122
|
+
run: |
|
|
123
|
+
ls -la dist/
|
|
124
|
+
test -f dist/bigquery_agent_analytics_tracing-${{ needs.verify.outputs.version }}.tar.gz \
|
|
125
|
+
|| (echo "::error::missing sdist" && exit 1)
|
|
126
|
+
test -f dist/bigquery_agent_analytics_tracing-${{ needs.verify.outputs.version }}-py3-none-any.whl \
|
|
127
|
+
|| (echo "::error::missing wheel" && exit 1)
|
|
128
|
+
test -f dist/bigquery-agent-analytics-tracing-claude-code-${{ needs.verify.outputs.version }}.tar.gz \
|
|
129
|
+
|| (echo "::error::missing plugin tarball" && exit 1)
|
|
130
|
+
|
|
131
|
+
- uses: actions/upload-artifact@v4
|
|
132
|
+
with:
|
|
133
|
+
name: release-tracing-dist
|
|
134
|
+
path: producers/dist/
|
|
135
|
+
if-no-files-found: error
|
|
136
|
+
|
|
137
|
+
github-release:
|
|
138
|
+
name: Create GitHub release
|
|
139
|
+
runs-on: ubuntu-latest
|
|
140
|
+
needs: [verify, build]
|
|
141
|
+
permissions:
|
|
142
|
+
contents: write
|
|
143
|
+
steps:
|
|
144
|
+
- uses: actions/checkout@v4
|
|
145
|
+
|
|
146
|
+
- uses: actions/download-artifact@v4
|
|
147
|
+
with:
|
|
148
|
+
name: release-tracing-dist
|
|
149
|
+
path: dist/
|
|
150
|
+
|
|
151
|
+
- name: List downloaded artifacts
|
|
152
|
+
run: ls -la dist/
|
|
153
|
+
|
|
154
|
+
- name: Create release with artifacts
|
|
155
|
+
uses: softprops/action-gh-release@v2
|
|
156
|
+
with:
|
|
157
|
+
name: "Tracing ${{ github.ref_name }}"
|
|
158
|
+
tag_name: ${{ github.ref_name }}
|
|
159
|
+
generate_release_notes: true
|
|
160
|
+
fail_on_unmatched_files: true
|
|
161
|
+
files: |
|
|
162
|
+
dist/bigquery_agent_analytics_tracing-${{ needs.verify.outputs.version }}-py3-none-any.whl
|
|
163
|
+
dist/bigquery_agent_analytics_tracing-${{ needs.verify.outputs.version }}.tar.gz
|
|
164
|
+
dist/bigquery-agent-analytics-tracing-claude-code-${{ needs.verify.outputs.version }}.tar.gz
|
|
165
|
+
|
|
166
|
+
publish-testpypi:
|
|
167
|
+
name: Publish to TestPyPI
|
|
168
|
+
runs-on: ubuntu-latest
|
|
169
|
+
# Depend on github-release too: the plugin tarball ships ONLY as a
|
|
170
|
+
# GitHub release asset, so if that step fails we must not let the
|
|
171
|
+
# wheel/sdist reach PyPI. Otherwise the "wheel and plugin always
|
|
172
|
+
# go together" invariant from RELEASING.md breaks silently.
|
|
173
|
+
# publish-pypi inherits the guard transitively via needs: publish-testpypi.
|
|
174
|
+
needs: [verify, build, github-release]
|
|
175
|
+
environment:
|
|
176
|
+
name: testpypi
|
|
177
|
+
url: https://test.pypi.org/p/bigquery-agent-analytics-tracing
|
|
178
|
+
permissions:
|
|
179
|
+
id-token: write
|
|
180
|
+
steps:
|
|
181
|
+
- uses: actions/download-artifact@v4
|
|
182
|
+
with:
|
|
183
|
+
name: release-tracing-dist
|
|
184
|
+
path: dist/
|
|
185
|
+
|
|
186
|
+
- name: Strip non-PyPI artifacts
|
|
187
|
+
# The plugin tarball is a release artifact, not a PyPI
|
|
188
|
+
# distribution. Filename uses hyphens in
|
|
189
|
+
# 'bigquery-agent-analytics-tracing-claude-code-*' so it's
|
|
190
|
+
# distinguishable from the underscore-named sdist.
|
|
191
|
+
run: |
|
|
192
|
+
rm -f dist/bigquery-agent-analytics-tracing-claude-code-*.tar.gz
|
|
193
|
+
ls -la dist/
|
|
194
|
+
|
|
195
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
|
196
|
+
with:
|
|
197
|
+
repository-url: https://test.pypi.org/legacy/
|
|
198
|
+
skip-existing: true
|
|
199
|
+
|
|
200
|
+
publish-pypi:
|
|
201
|
+
name: Publish to PyPI
|
|
202
|
+
runs-on: ubuntu-latest
|
|
203
|
+
needs: [verify, publish-testpypi]
|
|
204
|
+
environment:
|
|
205
|
+
name: pypi
|
|
206
|
+
url: https://pypi.org/p/bigquery-agent-analytics-tracing
|
|
207
|
+
permissions:
|
|
208
|
+
id-token: write
|
|
209
|
+
steps:
|
|
210
|
+
- uses: actions/download-artifact@v4
|
|
211
|
+
with:
|
|
212
|
+
name: release-tracing-dist
|
|
213
|
+
path: dist/
|
|
214
|
+
|
|
215
|
+
- name: Strip non-PyPI artifacts
|
|
216
|
+
run: |
|
|
217
|
+
rm -f dist/bigquery-agent-analytics-tracing-claude-code-*.tar.gz
|
|
218
|
+
ls -la dist/
|
|
219
|
+
|
|
220
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
{bigquery_agent_analytics-0.3.2 → bigquery_agent_analytics-0.3.3}/.github/workflows/release.yml
RENAMED
|
@@ -18,9 +18,19 @@ on:
|
|
|
18
18
|
release:
|
|
19
19
|
types: [published]
|
|
20
20
|
|
|
21
|
+
# The release event has no tag-pattern filter, so any published
|
|
22
|
+
# release fires this workflow. The producer pipeline publishes
|
|
23
|
+
# `tracing-vX.Y.Z` releases (release-tracing.yml); without this
|
|
24
|
+
# guard, every producer release would also trigger root SDK
|
|
25
|
+
# publishing and fail version verification.
|
|
26
|
+
#
|
|
27
|
+
# Root SDK tags use the plain `vX.Y.Z` pattern; producer tags use
|
|
28
|
+
# `tracing-vX.Y.Z`. Only the root pattern starts with literal `v`,
|
|
29
|
+
# so this is an unambiguous boundary.
|
|
21
30
|
jobs:
|
|
22
31
|
build:
|
|
23
32
|
name: Build package
|
|
33
|
+
if: startsWith(github.event.release.tag_name, 'v')
|
|
24
34
|
runs-on: ubuntu-latest
|
|
25
35
|
steps:
|
|
26
36
|
- uses: actions/checkout@v4
|
|
@@ -7,6 +7,82 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.3.3] - 2026-06-08
|
|
11
|
+
|
|
12
|
+
### Release highlights
|
|
13
|
+
|
|
14
|
+
Schema-derived Context Graph materialization, end to end. `bqaa context-graph
|
|
15
|
+
--property-graph property_graph.sql` now derives the ontology + binding from the
|
|
16
|
+
property graph plus live table schemas, so rename-free graphs need no
|
|
17
|
+
hand-written `ontology.yaml` / `binding.yaml` — and the same one-artifact flow
|
|
18
|
+
reaches the scheduled production path (Cloud Run deploy script, image builder,
|
|
19
|
+
`run_job.py`, and the Terraform module), with a split read-only-events /
|
|
20
|
+
writable-graph dataset contract. Explicit `--ontology` / `--binding` is retained
|
|
21
|
+
as the advanced override for descriptions, inheritance, derived properties,
|
|
22
|
+
renames, and the migration-v5 compiled-extractor path.
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
|
|
26
|
+
- **Schema-derived (`--property-graph`) materialization, local → production**
|
|
27
|
+
(local: [#277](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/277)
|
|
28
|
+
via [#278](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/278)–[#281](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/281),
|
|
29
|
+
[#285](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/285),
|
|
30
|
+
[#287](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/287);
|
|
31
|
+
deploy: [#286](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/286)
|
|
32
|
+
via [#288](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/288)–[#292](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/292))
|
|
33
|
+
— `bqaa context-graph --property-graph property_graph.sql` derives the ontology
|
|
34
|
+
+ binding from the property graph + live table schemas, so no hand-written
|
|
35
|
+
`ontology.yaml` / `binding.yaml` is needed for rename-free graphs. Scheduled
|
|
36
|
+
production reaches parity: the Cloud Run deploy script, image builder,
|
|
37
|
+
`run_job.py` (`BQAA_PROPERTY_GRAPH`), and the Terraform module all accept the
|
|
38
|
+
one-artifact flow (placeholdered `property_graph.sql` + sibling
|
|
39
|
+
`table_ddl.sql`), with a split read-only-events / writable-graph contract
|
|
40
|
+
(events read-only; graph tables + `_bqaa_materialization_state` land in the
|
|
41
|
+
graph dataset). Explicit `--ontology`/`--binding` is preserved as the advanced
|
|
42
|
+
override (descriptions, inheritance, derived properties, renames, the
|
|
43
|
+
migration-v5 compiled extractor).
|
|
44
|
+
- **Selectable `AI.GENERATE` extraction model**
|
|
45
|
+
([#298](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/298))
|
|
46
|
+
— choose the model for the `ai-fallback` extraction across every surface:
|
|
47
|
+
`run_materialize_window(endpoint=...)` (Python API), `bqaa context-graph
|
|
48
|
+
--endpoint` (CLI), and `BQAA_ENDPOINT` for the scheduled `run_job.py` deploy.
|
|
49
|
+
Short names resolve to the Vertex `locations/global` publisher URL, so Gemini
|
|
50
|
+
3.x models such as `gemini-3.5-flash` work. Defaults to `gemini-2.5-flash`
|
|
51
|
+
everywhere, so existing callers are unaffected; ignored under
|
|
52
|
+
`--extraction-mode=compiled-only` (no AI call is made).
|
|
53
|
+
|
|
54
|
+
### Fixed
|
|
55
|
+
|
|
56
|
+
- **`run_job.py` table-DDL bootstrap mis-split on statement boundaries**
|
|
57
|
+
([#286](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/286))
|
|
58
|
+
— `_bootstrap_entity_tables` split the DDL on `;` without accounting for
|
|
59
|
+
comments or quoting, so a `;` inside a `--` comment (e.g. the codelab
|
|
60
|
+
`table_ddl.sql`'s "materializer fills automatically; they are required")
|
|
61
|
+
produced a comment-only fragment BigQuery rejected with "Unexpected end of
|
|
62
|
+
statement" — and a `;` or `--` inside a string literal
|
|
63
|
+
(`OPTIONS(description="has; semicolon")`, `DEFAULT 'a;b'`) or a backtick
|
|
64
|
+
identifier could corrupt a customer's DDL. Replaced with a quote- and
|
|
65
|
+
comment-aware splitter: it strips `--` line comments and `/* */` block
|
|
66
|
+
comments and splits on `;` only at the top level (never inside `'`, `"`, or
|
|
67
|
+
`` ` `` quoting). Found by a live `--property-graph` deploy smoke.
|
|
68
|
+
|
|
69
|
+
### Changed
|
|
70
|
+
|
|
71
|
+
- **Renamed the context-graph example for product-facing clarity**
|
|
72
|
+
([#282](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/282))
|
|
73
|
+
— `examples/migration_v5/` → `examples/context_graph/` (the `migration_v5`
|
|
74
|
+
label was internal milestone bookkeeping). The scheduled-deploy entrypoints
|
|
75
|
+
move with it (`examples/context_graph/periodic_materialization/...`). The
|
|
76
|
+
demo's default BigQuery dataset is now `context_graph` (was `migration_v5_demo`)
|
|
77
|
+
and the Terraform example's graph dataset is `context_graph` (was
|
|
78
|
+
`migration_v5_graph`). The user-facing docs (blog, codelab, runbook, deploy +
|
|
79
|
+
Terraform READMEs) now lead with the one-artifact `property_graph.sql` path as
|
|
80
|
+
primary and frame explicit `ontology.yaml` / `binding.yaml` as the advanced
|
|
81
|
+
override. The previously executed demo notebook is archived as
|
|
82
|
+
`examples/_archive/context_graph_historical_notebook.ipynb`. **Action for
|
|
83
|
+
users:** update any deep links to `examples/migration_v5/...` and any reference
|
|
84
|
+
to the `migration_v5_demo` dataset.
|
|
85
|
+
|
|
10
86
|
## [0.3.2] - 2026-05-22
|
|
11
87
|
|
|
12
88
|
### Release highlights
|
|
@@ -61,7 +61,7 @@ architecture, rationale, and implementation plans behind key SDK features.
|
|
|
61
61
|
|
|
62
62
|
| Document | Description |
|
|
63
63
|
|----------|-------------|
|
|
64
|
-
| [
|
|
64
|
+
| [Context Graph periodic materialization playbook](../examples/context_graph/periodic_materialization/README.md) | Customer deployment path for keeping the MAKO context graph fresh on a schedule: local dry-run, Cloud Run Job + Cloud Scheduler deploy with `--smoke`, IAM matrix, schedule guidance, JSON log shape, Cloud Monitoring alert filters, state-table inspection, cleanup, and troubleshooting. |
|
|
65
65
|
| [proposal_bigquery_agent_cli.md](proposal_bigquery_agent_cli.md) | CLI proposal and command design |
|
|
66
66
|
| [python_udf_support_design.md](python_udf_support_design.md) | BigQuery Python UDF architecture |
|
|
67
67
|
| [remote_function_rationale.md](remote_function_rationale.md) | Cloud Run remote function rationale |
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
# Trace AI Agent Decisions with BigQuery Property Graphs
|
|
2
|
+
|
|
3
|
+
**Byline**:
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
*BigQuery property graphs, BigQuery Conversational Analytics, and the BigQuery Agent Analytics SDK are currently in Preview on Google Cloud. The BigQuery Agent Analytics Plugin is Generally Available (GA). Examples in this post use synthetic data.*
|
|
7
|
+
|
|
8
|
+
Enterprises are rapidly deploying AI agents to transform their data platforms into proactive [Systems of Action](https://cloud.google.com/transform/shift-system-of-action-architecting-the-agentic-data-cloud-ai). However, scaling these mission-critical applications requires a reliable foundation of trust. Historically, systems of record focused on capturing what happened; in the agentic era, organizations must capture why it happened. When an auditor or executive asks "Why did the agent make that decision?", organizations need prompt, verifiable visibility into the agent's dynamic reasoning: its context, weighed options, exceptions granted, and final actions. Today, we are introducing Context Graph in BigQuery: an integrated solution that elevates standard agent telemetry into a structured, audit-ready graph of decisions. By capturing every action and linking it to its triggering context, Context Graph provides the transparent, reliable foundation you need to scale your System of Action with confidence.
|
|
9
|
+
|
|
10
|
+
## The challenge of a trusted system of action
|
|
11
|
+
|
|
12
|
+
AI agents provide a natural mechanism for reasoning over live data, orchestrating complex cross-system tasks, and driving proactive business outcomes. However, deploying autonomous agents for mission-critical applications at enterprise scale often presents the following challenges:
|
|
13
|
+
|
|
14
|
+
* **Lack of transparency and trust:** As agents take actions on your behalf, it can be difficult to determine exactly why an agent made a specific decision, what data it touched, or whether you can confidently trust the outcome. Traditional data tools often just store the final outcome, suffering from an "amnesia" that loses the inputs, context, and synthesis that led to that specific action.
|
|
15
|
+
|
|
16
|
+
* **Increased business risk:** Without clear, explainable visibility into automated actions, organizations are left vulnerable to potential monetary losses and internal policy violations. When an agent makes an anomalous choice, such as executing a transaction at an unexpected price, the inability to trace its root cause makes the system incredibly difficult to debug and reliably govern. Effective governance requires an auditable process to verify that guardrails are actually working.
|
|
17
|
+
|
|
18
|
+
* **Unmanageable telemetry:** While tools like Google's Agent Development Kit (ADK) make it substantially easier to build and deploy agents, the raw traces they produce, such as event logs, tool calls, and reasoning steps, are inherently unstructured. This leaves the data difficult to query, hard to audit, and challenging to govern at scale. The valuable precedents buried in these logs are often lost, preventing the system from building a feedback loop to learn from past decisions.
|
|
19
|
+
|
|
20
|
+
## Introducing Context Graph in BigQuery
|
|
21
|
+
|
|
22
|
+
Context Graph in BigQuery transforms raw agent traces into a structured, trusted context, elevating flat telemetry into an interconnected, traversable web of decision traces, data lineage, and tool executions. Built on [BigQuery Agent Analytics](https://cloud.google.com/blog/products/data-analytics/introducing-bigquery-agent-analytics), which centralizes your Agent Development Kit (ADK) events directly in BigQuery, it connects every reasoning step to make automated decisions highly auditable. By doing so, it serves as a queryable "institutional memory" for your data platform, capturing the exceptions, overrides, and precedents that map how decisions are actually made.
|
|
23
|
+
|
|
24
|
+
Crucially, this happens natively within your existing data warehouse; there is no need to export logs to a specialized graph database or build complex ETL pipelines. By providing this structured, easily queryable visibility, Context Graph helps organizations not just deploy a system of agents, but build a proactive system of action they can stand behind.
|
|
25
|
+
|
|
26
|
+

|
|
27
|
+
|
|
28
|
+
## Context Graph in agentic media buying
|
|
29
|
+
|
|
30
|
+
Consider digital media buying, where sell-side processes, like negotiating ad placements, evaluating pricing rules, and checking compliance, historically took weeks of manual handoffs and spreadsheet coordination. By deploying an autonomous Seller Agent, a digital media company can compress this entire lifecycle from months down to seconds. However, moving real advertising budgets at machine speed requires regulator-grade trust. If an executive or auditor asks why a specific live campaign was executed at a certain price point, digging through fragmented, raw system logs with ad-hoc SQL is the wrong control surface.
|
|
31
|
+
|
|
32
|
+
By using BigQuery Context Graph, the company can verify that every automated decision is transparent and auditable. Every time the Seller Agent takes an action, the process is captured and structured automatically:
|
|
33
|
+
|
|
34
|
+
* **Capturing the action:** The moment the agent queries a knowledge graph, hands a task to a specialized brand-safety sub-agent, or evaluates an inventory pricing rule, the event is captured natively by the BigQuery Agent Analytics plugin.
|
|
35
|
+
|
|
36
|
+
* **Structuring the trace:** Instead of dumping these details into messy text logs, the system shapes the raw telemetry into a typed, queryable Context Graph based on the company's provided ontology.
|
|
37
|
+
|
|
38
|
+
* **Answering the audit:** If a campaign's parameters need to be verified, compliance teams can traverse the resulting graph to see exactly which active contracts, floor prices, and brand safety rules triggered that specific execution.
|
|
39
|
+
|
|
40
|
+
By turning flat log files into an interconnected relationship map, the company doesn't just run a fast system, it has a strictly governed, trusted system of action.
|
|
41
|
+
|
|
42
|
+
## Let's walk through an example
|
|
43
|
+
|
|
44
|
+
The example below uses the same generic agent decision flow the [hands-on codelab](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/blob/main/docs/codelabs/periodic_materialization.md) runs end to end: a request comes in, the agent weighs options with confidence scores, and an outcome is committed. Everything runs natively in BigQuery.
|
|
45
|
+
|
|
46
|
+
### Step 1: Capture agent traces
|
|
47
|
+
|
|
48
|
+
In production, the Generally Available BigQuery Agent Analytics Plugin captures agent activity (tool calls, LLM requests, approvals) the moment your ADK agent runs and stream-writes it to a structured `agent_events` table:
|
|
49
|
+
|
|
50
|
+
```py
|
|
51
|
+
from google.adk.plugins import BigQueryAgentAnalyticsPlugin
|
|
52
|
+
|
|
53
|
+
plugin = BigQueryAgentAnalyticsPlugin(
|
|
54
|
+
project_id="your-project-id",
|
|
55
|
+
dataset_id="agent_analytics",
|
|
56
|
+
)
|
|
57
|
+
runner = Runner(agent=root_agent, plugins=[plugin])
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
To follow along without an agent, the SDK ships a generator that writes a realistic, production-shaped corpus directly to `agent_events`:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
bqaa seed-events \
|
|
64
|
+
--project-id "$PROJECT_ID" --dataset-id "$DATASET" \
|
|
65
|
+
--scenario decision-realistic --seed 42
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
### Step 2: Define the context graph
|
|
69
|
+
|
|
70
|
+
Declare the graph shape once, in standard SQL. This models the decision flow: requests, the options each request weighed, the committed outcome, and the edges that connect them.
|
|
71
|
+
|
|
72
|
+
```sql
|
|
73
|
+
CREATE OR REPLACE PROPERTY GRAPH agent_analytics.agent_decisions_graph
|
|
74
|
+
NODE TABLES (
|
|
75
|
+
agent_analytics.decision_request AS decision_request
|
|
76
|
+
KEY (request_id)
|
|
77
|
+
LABEL DecisionRequest PROPERTIES (request_id, request_text, requested_at),
|
|
78
|
+
agent_analytics.decision_option AS decision_option
|
|
79
|
+
KEY (option_id)
|
|
80
|
+
LABEL DecisionOption PROPERTIES (option_id, option_label, confidence),
|
|
81
|
+
agent_analytics.decision_outcome AS decision_outcome
|
|
82
|
+
KEY (outcome_id)
|
|
83
|
+
LABEL DecisionOutcome PROPERTIES (outcome_id, status, rationale, decided_at)
|
|
84
|
+
)
|
|
85
|
+
EDGE TABLES (
|
|
86
|
+
agent_analytics.evaluates_option AS evaluates_option
|
|
87
|
+
KEY (request_id, option_id)
|
|
88
|
+
SOURCE KEY (request_id) REFERENCES decision_request (request_id)
|
|
89
|
+
DESTINATION KEY (option_id) REFERENCES decision_option (option_id)
|
|
90
|
+
LABEL evaluatesOption,
|
|
91
|
+
agent_analytics.resulted_in AS resulted_in
|
|
92
|
+
KEY (request_id, outcome_id)
|
|
93
|
+
SOURCE KEY (request_id) REFERENCES decision_request (request_id)
|
|
94
|
+
DESTINATION KEY (outcome_id) REFERENCES decision_outcome (outcome_id)
|
|
95
|
+
LABEL resultedIn
|
|
96
|
+
);
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### Step 3: Extract context graph from agent traces
|
|
100
|
+
|
|
101
|
+
A single command reads the raw `agent_events` and populates the graph tables. It derives what to extract directly from the property graph you defined in Step 2: `bqaa context-graph` reads that `CREATE PROPERTY GRAPH` definition and the schemas of the tables it references, so the property-graph schema is the only thing you author — no separate ontology or binding file. For local development, run the materializer once:
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
bqaa context-graph \
|
|
105
|
+
--project-id "$PROJECT_ID" --dataset-id "$DATASET" \
|
|
106
|
+
--property-graph property_graph.sql \
|
|
107
|
+
--lookback-hours 24
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
For production, run the same materialization path on a schedule with the SDK's Cloud Run Job + Cloud Scheduler [deployment guide](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/tree/main/examples/context_graph/periodic_materialization) or Terraform module.
|
|
111
|
+
|
|
112
|
+
Extraction is your choice: an LLM path (`AI.GENERATE`) for flexible onboarding against variable log structures, or a deterministic compiled mode (`--extraction-mode=compiled-only`) for lower cost and reproducible, auditor-verifiable output with no Vertex AI dependency. (Need descriptions, inheritance, derived properties, or column renames? Author an explicit `ontology.yaml` + `binding.yaml` and pass `--ontology`/`--binding` instead.)
|
|
113
|
+
|
|
114
|
+
### Step 4: Access the context graph
|
|
115
|
+
|
|
116
|
+
The graph is now queryable two ways. For exact, repeatable lineage, traverse it with Graph Query Language (GQL):
|
|
117
|
+
|
|
118
|
+
```sql
|
|
119
|
+
SELECT *
|
|
120
|
+
FROM GRAPH_TABLE (
|
|
121
|
+
agent_analytics.agent_decisions_graph
|
|
122
|
+
MATCH
|
|
123
|
+
(req:DecisionRequest) -[:evaluatesOption]-> (opt:DecisionOption),
|
|
124
|
+
(req) -[:resultedIn]-> (out:DecisionOutcome)
|
|
125
|
+
COLUMNS (
|
|
126
|
+
req.request_id AS request,
|
|
127
|
+
req.request_text AS question,
|
|
128
|
+
opt.option_label AS considered,
|
|
129
|
+
opt.confidence AS score,
|
|
130
|
+
out.status AS outcome
|
|
131
|
+
)
|
|
132
|
+
)
|
|
133
|
+
ORDER BY request, score DESC;
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
BigQuery Studio can also render the property graph visually. A `GRAPH … MATCH p = (a)-[e]->(b) RETURN TO_JSON(p)` query draws the full decision web:
|
|
137
|
+
|
|
138
|
+

|
|
139
|
+
|
|
140
|
+
For the business reader who does not write SQL, **BigQuery Conversational Analytics** (Preview) answers the same questions in plain English over the graph, generating the query for you:
|
|
141
|
+
|
|
142
|
+

|
|
143
|
+
|
|
144
|
+
Ask in plain English first; drop to GQL when an answer needs to become a saved query, a scheduled report, or an audit artifact. The [Conversational Analytics-first guide](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/blob/main/docs/guides/conversational-analytics-first.md) walks through that workflow.
|
|
145
|
+
|
|
146
|
+
## Get started
|
|
147
|
+
|
|
148
|
+
To begin building Context Graphs for your agent workloads, check out the resources below:
|
|
149
|
+
|
|
150
|
+
* **Code Repository**: Visit the [BigQuery Agent Analytics SDK on GitHub](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK).
|
|
151
|
+
* **Hands-on Codelab**: Follow the step-by-step *Trace AI Agent Decisions with BigQuery Property Graphs* codelab to build and query a Context Graph from scratch.
|
|
152
|
+
* **Production Setup**: Review the [Periodic Materialization guide](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/tree/main/examples/context_graph/periodic_materialization) to configure IAM, the Cloud Run Job, and the Cloud Scheduler trigger.
|
|
153
|
+
* **Ask in plain English**: The [Conversational Analytics-first guide](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/blob/main/docs/guides/conversational-analytics-first.md) shows business readers how to query the decision graph without writing SQL.
|
bigquery_agent_analytics-0.3.3/docs/codelabs/images/Gemini_Generated_Image_2qdbtg2qdbtg2qdb.jpeg
ADDED
|
Binary file
|
|
Binary file
|