bigquery-agent-analytics 0.3.1__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.1 → bigquery_agent_analytics-0.3.3}/.github/workflows/ci.yml +7 -1
- bigquery_agent_analytics-0.3.3/.github/workflows/producers-ci.yml +114 -0
- bigquery_agent_analytics-0.3.3/.github/workflows/release-tracing.yml +220 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/.github/workflows/release.yml +10 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/.gitignore +9 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/CHANGELOG.md +187 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/PKG-INFO +1 -1
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/autoformat.sh +2 -2
- {bigquery_agent_analytics-0.3.1 → 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.1 → bigquery_agent_analytics-0.3.3}/examples/README.md +3 -2
- bigquery_agent_analytics-0.3.1/examples/migration_v5_demo_notebook.ipynb → bigquery_agent_analytics-0.3.3/examples/_archive/context_graph_historical_notebook.ipynb +840 -255
- 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.3/examples/context_graph/binding.yaml +187 -0
- bigquery_agent_analytics-0.3.3/examples/context_graph/example_ontologies/__init__.py +25 -0
- bigquery_agent_analytics-0.3.3/examples/context_graph/example_ontologies/simple_request_flow.ttl +125 -0
- bigquery_agent_analytics-0.3.3/examples/context_graph/example_ontologies/simple_request_flow_config.py +45 -0
- {bigquery_agent_analytics-0.3.1/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/export_events_jsonl.py +3 -3
- bigquery_agent_analytics-0.3.3/examples/context_graph/mako_artifacts.py +229 -0
- {bigquery_agent_analytics-0.3.1/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/mako_demo_agent.py +174 -5
- bigquery_agent_analytics-0.3.3/examples/context_graph/ontology_artifacts.py +770 -0
- {bigquery_agent_analytics-0.3.1/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/periodic_materialization/README.md +249 -87
- bigquery_agent_analytics-0.3.3/examples/context_graph/periodic_materialization/build_image.sh +226 -0
- bigquery_agent_analytics-0.3.3/examples/context_graph/periodic_materialization/deploy_cloud_run_job.sh +963 -0
- bigquery_agent_analytics-0.3.3/examples/context_graph/periodic_materialization/requirements.txt +36 -0
- {bigquery_agent_analytics-0.3.1/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/periodic_materialization/run_job.py +255 -28
- bigquery_agent_analytics-0.3.3/examples/context_graph/periodic_materialization/terraform/.gitignore +9 -0
- bigquery_agent_analytics-0.3.3/examples/context_graph/periodic_materialization/terraform/README.md +203 -0
- bigquery_agent_analytics-0.3.3/examples/context_graph/periodic_materialization/terraform/main.tf +356 -0
- bigquery_agent_analytics-0.3.3/examples/context_graph/periodic_materialization/terraform/outputs.tf +38 -0
- bigquery_agent_analytics-0.3.3/examples/context_graph/periodic_materialization/terraform/terraform.tfvars.example +32 -0
- bigquery_agent_analytics-0.3.3/examples/context_graph/periodic_materialization/terraform/variables.tf +145 -0
- bigquery_agent_analytics-0.3.3/examples/context_graph/periodic_materialization/terraform/versions.tf +31 -0
- bigquery_agent_analytics-0.3.3/examples/context_graph/property_graph.sql +108 -0
- {bigquery_agent_analytics-0.3.1/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/reference_extractor.py +294 -12
- {bigquery_agent_analytics-0.3.1/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.1 → 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.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor/bigquery_agent_analytics_tracing/__init__.py +47 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor/bigquery_agent_analytics_tracing/_utils.py +168 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor/bigquery_agent_analytics_tracing/_writer_identity.py +52 -0
- 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/config.py +149 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor/bigquery_agent_analytics_tracing/drain.py +668 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor/bigquery_agent_analytics_tracing/logger.py +459 -0
- bigquery_agent_analytics-0.3.3/plugins/claude_code_dist/bigquery-agent-analytics-tracing/vendor/bigquery_agent_analytics_tracing/schema.py +73 -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.3/producers/pyproject.toml +91 -0
- 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/__init__.py +13 -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_config.py +158 -0
- bigquery_agent_analytics-0.3.3/producers/tests/test_drain.py +309 -0
- bigquery_agent_analytics-0.3.3/producers/tests/test_logger_row_shape.py +290 -0
- bigquery_agent_analytics-0.3.3/producers/tests/test_schema.py +106 -0
- bigquery_agent_analytics-0.3.3/producers/tests/test_setup_check.py +428 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/pyproject.toml +2 -1
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/scripts/README.md +116 -2
- bigquery_agent_analytics-0.3.3/scripts/generate_colab_from_codelab.py +601 -0
- bigquery_agent_analytics-0.3.3/scripts/latency_report.py +730 -0
- bigquery_agent_analytics-0.3.3/scripts/latency_report.sh +52 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/scripts/quality_report.py +389 -113
- bigquery_agent_analytics-0.3.3/scripts/sample_latency_report.md +169 -0
- bigquery_agent_analytics-0.3.3/scripts/sample_quality_report.md +138 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/categorical_evaluator.py +47 -26
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/cli.py +306 -12
- bigquery_agent_analytics-0.3.3/src/bigquery_agent_analytics/extracted_models.py +152 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/graph_validation.py +60 -21
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/materialize_window.py +1169 -59
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ontology_graph.py +192 -12
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ontology_materializer.py +77 -17
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ontology_property_graph.py +55 -21
- bigquery_agent_analytics-0.3.3/src/bigquery_agent_analytics/property_graph_spec.py +117 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/resolved_spec.py +54 -3
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/runtime_spec.py +24 -2
- bigquery_agent_analytics-0.3.3/src/bigquery_agent_analytics/seed_events.py +563 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/structured_extraction.py +104 -9
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/binding_loader.py +248 -1
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/binding_models.py +91 -6
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/graph_ddl_compiler.py +105 -5
- 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.3/tests/test_binding_explicit_fk_mapping.py +908 -0
- {bigquery_agent_analytics-0.3.1 → 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.3/tests/test_context_graph_ontology_artifacts.py +345 -0
- bigquery_agent_analytics-0.3.1/tests/test_migration_v5_reference_extractor.py → bigquery_agent_analytics-0.3.3/tests/test_context_graph_reference_extractor.py +167 -3
- bigquery_agent_analytics-0.3.3/tests/test_deploy_property_graph_mode.py +171 -0
- bigquery_agent_analytics-0.3.3/tests/test_extract_graph_diagnostics_modes.py +565 -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.3/tests/test_latency_report_helpers.py +304 -0
- bigquery_agent_analytics-0.3.3/tests/test_materialize_window.py +4661 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_materialize_window_live.py +14 -12
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_materializer.py +170 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_property_graph.py +121 -0
- bigquery_agent_analytics-0.3.3/tests/test_property_graph_spec.py +283 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_quality_report_helpers.py +315 -4
- 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.1/examples/migration_v5/README.md +0 -205
- bigquery_agent_analytics-0.3.1/examples/migration_v5/binding.yaml +0 -103
- bigquery_agent_analytics-0.3.1/examples/migration_v5/mako_artifacts.py +0 -751
- bigquery_agent_analytics-0.3.1/examples/migration_v5/periodic_materialization/deploy_cloud_run_job.sh +0 -587
- bigquery_agent_analytics-0.3.1/examples/migration_v5/periodic_materialization/requirements.txt +0 -29
- bigquery_agent_analytics-0.3.1/examples/migration_v5/property_graph.sql +0 -58
- bigquery_agent_analytics-0.3.1/examples/migration_v5/table_ddl.sql +0 -13
- bigquery_agent_analytics-0.3.1/scripts/sample_report.md +0 -164
- bigquery_agent_analytics-0.3.1/src/bigquery_agent_analytics/extracted_models.py +0 -57
- bigquery_agent_analytics-0.3.1/tests/test_materialize_window.py +0 -2203
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/CODE_OF_CONDUCT.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/CONTRIBUTING.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/LICENSE +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/README.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/SDK.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/SECURITY.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/dashboard/README.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/dashboard/agent_analytics_dashboard.ipynb +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/dashboard/app.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/dashboard/requirements.txt +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/README.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/continuous_queries/README.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/continuous_queries/bigtable_dashboard.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/continuous_queries/pubsub_alerting.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/continuous_queries/realtime_error_analysis.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/continuous_queries/session_scoring.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/continuous_queries/setup_reservation.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/python_udf/README.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/python_udf/register.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/remote_function/README.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/remote_function/deploy.sh +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/remote_function/dispatch.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/remote_function/main.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/remote_function/register.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/streaming_evaluation/README.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/streaming_evaluation/main.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/streaming_evaluation/requirements.txt +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/streaming_evaluation/setup.sh +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/streaming_evaluation/trigger_query.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/deploy/streaming_evaluation/worker.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/context_graph_v2_design.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/context_graph_v3_design.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/design.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/entity_resolution_primitives.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_bka_measurement.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_bq_bundle_mirror.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_bundle_loader.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_diagnostics.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_orchestrator_swap.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_plan_parser.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_plan_resolver.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_retry_loop.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_revalidate_cli.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_revalidation.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_rollout_guide.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_runtime_fallback.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_runtime_registry.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_runtime_target.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_scaffolding.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/extractor_compilation_template_renderer.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/hatteras_evaluation.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/implementation_plan_concept_index_runtime.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/implementation_plan_remote_function.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/learning_ontology_and_context_graph.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/ontology/binding-validation.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/ontology/binding.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/ontology/cli.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/ontology/compilation.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/ontology/concept-index.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/ontology/ontology-build.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/ontology/ontology.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/ontology/owl-import.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/ontology/scaffold.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/ontology/validation.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/ontology_graph_v4_design.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/ontology_graph_v5_design.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/ontology_runtime_reader.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/prd_unified_analytics_interface.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/proposal_bigquery_agent_cli.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/python_udf_support_design.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/remote_function_rationale.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/docs/sdk_usage_tracking.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/.gitignore +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/A2A_JOINT_LINEAGE.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/BQ_STUDIO_WALKTHROUGH.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/DATA_LINEAGE.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/DEMO_NARRATION.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/README.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/analyst_agent/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/analyst_agent/agent.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/analyst_agent/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/analyst_agent/tools.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/bq_studio_queries.gql.tpl +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/build_joint_graph.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/build_org_graphs.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/caller_agent/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/caller_agent/agent.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/caller_agent/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/caller_agent/tools.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/campaigns.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/joint_property_graph.gql.tpl +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/receiver_agent/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/receiver_agent/agent.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/receiver_agent/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/render_queries.sh +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/reset.sh +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/run_analyst_agent.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/run_caller_agent.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/run_e2e_demo.sh +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/run_receiver_server.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/setup.sh +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/a2a_joint_lineage_demo/smoke_receiver.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/DEMO_NARRATION.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/README.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent/agent.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent/tools.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/config.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/config_loader.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/eval_runner.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/improver_agent.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/prompt_adapter.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/agent_improvement/tool_introspection.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/config.json +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/demo.png +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/eval/eval_cases.json +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/eval/generate_traffic.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/eval/operational_metrics.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/eval/run_eval.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/overview.png +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/reset.sh +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/run_cycle.sh +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/run_improvement.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/setup.sh +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/setup_vertex.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/agent_improvement_cycle/show_prompt.sh +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/ai_classify_side_by_side.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/ai_forecast_side_by_side.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/ai_ml_integration_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/ai_similarity_validation.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/categorical_dashboard.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/categorical_evaluation_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/ci/README.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/ci/evaluate_thresholds.yml +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/ci_eval_pipeline.sh +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/cli_agent_tool.py +0 -0
- {bigquery_agent_analytics-0.3.1/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/.gitignore +0 -0
- {bigquery_agent_analytics-0.3.1/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/mako_core.ttl +0 -0
- {bigquery_agent_analytics-0.3.1/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/ontology.yaml +0 -0
- {bigquery_agent_analytics-0.3.1/examples/migration_v5 → bigquery_agent_analytics-0.3.3/examples/context_graph}/revalidation_thresholds.json +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/context_graph_adcp_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/continuous_query_alerting.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/dashboard_v2.ipynb +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/dashboard_v2_bigframes.ipynb +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/.gitignore +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/BQ_STUDIO_WALKTHROUGH.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/DATA_LINEAGE.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/DEMO_NARRATION.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/DEMO_QUESTIONS.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/README.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/SETUP_NEW_PROJECT.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/SLIDES.html +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/SLIDES.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/SLIDES.pptx +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/agent/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/agent/agent.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/agent/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/agent/tools.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/bq_studio_queries.gql.tpl +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/build_graph.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/build_rich_graph.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/campaigns.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/property_graph.gql.tpl +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/render_queries.sh +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/reset.sh +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/rich_property_graph.gql.tpl +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/run_agent.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/decision_lineage_demo/setup.sh +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/e2e_demo.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/e2e_demo_output.txt +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/e2e_notebook_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/event_semantics_views_bigframes_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/memory_service_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/nba_agent_trace_analysis_notebook.ipynb +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/ontology_graph_v5_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/python_udf_eval_summary.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/python_udf_evaluation.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/python_udf_event_semantics.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/remote_function_dashboard.sql +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/examples/ymgo_graph_spec.yaml +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/scripts/quality_report.sh +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/_deploy_runtime.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/_ontology_routing.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/_streaming_evaluation.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/_telemetry.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ai_ml_integration.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/bigframes_evaluator.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/binding_validation.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/categorical_views.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/client.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/context_graph.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/eval_suite.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/eval_validator.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/evaluators.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/event_semantics.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/ast_validator.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/bq_bundle_mirror.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/bundle_loader.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/cli_revalidate.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/compiler.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/diagnostics.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/fingerprint.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/manifest.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/measurement.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/plan_parser.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/plan_resolver.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/retry_loop.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/revalidation.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/runtime_fallback.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/runtime_registry.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/smoke_test.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/subprocess_runner.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/extractor_compilation/template_renderer.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/feedback.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/formatter.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/grader_pipeline.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/insights.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/memory_service.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/multi_trial.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ontology_models.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ontology_orchestrator.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ontology_runtime.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ontology_schema_compiler.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/serialization.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/trace.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/trace_evaluator.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/ttl_importer.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/udf_kernels.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/udf_sql_templates.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_agent_analytics/views.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/_fingerprint.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/cli.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/concept_index.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/docs/user_manual.md +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/graph_ddl_models.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/ontology_loader.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/ontology_models.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/owl_importer.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/src/bigquery_ontology/scaffold.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_binding_loader.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_binding_models.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_cli.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_compile_concept_index.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_concept_index.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_fingerprint.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_graph_ddl_compiler.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_ontology_models.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_owl_importer.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_scaffold.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/bigquery_ontology/test_scaffold_cli.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/fixtures/lineage_sessions.json +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/fixtures/mixed_events.json +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/fixtures/mixed_owl_skos.ttl +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/fixtures/skos_taxonomy.ttl +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/fixtures/test_binding.yaml +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/fixtures/test_combined_spec.yaml +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/fixtures/test_ontology.yaml +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/fixtures/yamo_sample.ttl +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/fixtures_extractor_compilation/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/fixtures_extractor_compilation/bka_decision_inputs.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/fixtures_extractor_compilation/bka_decision_measurement_report.json +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/fixtures_extractor_compilation/bka_decision_template.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/fixtures_extractor_compilation/plan_bka_decision.json +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_abstract_adapter_filter.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_ai_generate_judge_live.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_ai_ml_integration.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_ai_ml_integration_labels.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_bigframes_evaluator.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_binding_validation.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_bridge_hardening.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_categorical_views.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_cli.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_client_labels.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_context_graph.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_context_graph_labels.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_dual_loader.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_eval_suite.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_eval_validator.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_event_semantics.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extracted_models.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_bka_compile_live.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_bq_bundle_mirror.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_bq_bundle_mirror_live.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_bundle_loader.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_cli_revalidate.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_cli_revalidate_bq_live.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_diagnostics.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_measurement.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_plan_parser.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_plan_resolver.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_retry_loop.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_revalidation.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_runtime_fallback.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_runtime_registry.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_extractor_compilation_template.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_feedback_labels.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_formatter.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_grader_pipeline.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_graph_validation.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_integration_ontology_binding.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_memory_service.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_memory_service_labels.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_multi_trial.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_graph.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_graph_from_bundles_root.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_labels.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_models.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_orchestrator.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_runtime.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_runtime_live.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_ontology_schema_compiler.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_owl_import_bridge.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_pr16_fixes.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_pr17_fixes.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_pr19_fixes.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_remote_function.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_resolved_spec.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_runtime_factory.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_runtime_spec.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_sdk_client.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_sdk_evaluators.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_sdk_feedback.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_sdk_insights.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_sdk_trace.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_serialization.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_streaming_evaluation.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_surface_tags.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_telemetry.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_trace_evaluator.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_trace_filter_factory.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_udf_kernels.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_udf_sql_generation.py +0 -0
- {bigquery_agent_analytics-0.3.1 → bigquery_agent_analytics-0.3.3}/tests/test_v5_golden.py +0 -0
- {bigquery_agent_analytics-0.3.1 → 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
|
|
@@ -0,0 +1,114 @@
|
|
|
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
|
+
name: Producers CI
|
|
16
|
+
|
|
17
|
+
on:
|
|
18
|
+
push:
|
|
19
|
+
branches: [main]
|
|
20
|
+
paths:
|
|
21
|
+
- 'producers/**'
|
|
22
|
+
- 'plugins/claude_code/**'
|
|
23
|
+
- '.github/workflows/producers-ci.yml'
|
|
24
|
+
pull_request:
|
|
25
|
+
branches: [main]
|
|
26
|
+
paths:
|
|
27
|
+
- 'producers/**'
|
|
28
|
+
- 'plugins/claude_code/**'
|
|
29
|
+
- '.github/workflows/producers-ci.yml'
|
|
30
|
+
|
|
31
|
+
concurrency:
|
|
32
|
+
group: producers-ci-${{ github.ref }}
|
|
33
|
+
cancel-in-progress: true
|
|
34
|
+
|
|
35
|
+
defaults:
|
|
36
|
+
run:
|
|
37
|
+
working-directory: producers
|
|
38
|
+
|
|
39
|
+
jobs:
|
|
40
|
+
format:
|
|
41
|
+
name: Producers format check
|
|
42
|
+
runs-on: ubuntu-latest
|
|
43
|
+
steps:
|
|
44
|
+
- uses: actions/checkout@v4
|
|
45
|
+
|
|
46
|
+
- uses: actions/setup-python@v5
|
|
47
|
+
with:
|
|
48
|
+
python-version: "3.12"
|
|
49
|
+
|
|
50
|
+
- name: Install formatting tools
|
|
51
|
+
run: pip install "pyink>=24.3.0" "isort>=5.0"
|
|
52
|
+
|
|
53
|
+
- name: isort --check
|
|
54
|
+
run: isort --check-only src/ tests/ scripts/
|
|
55
|
+
|
|
56
|
+
- name: pyink --check
|
|
57
|
+
run: pyink --check src/ tests/ scripts/
|
|
58
|
+
|
|
59
|
+
test:
|
|
60
|
+
name: Producers test (Python ${{ matrix.python-version }})
|
|
61
|
+
runs-on: ubuntu-latest
|
|
62
|
+
strategy:
|
|
63
|
+
fail-fast: false
|
|
64
|
+
matrix:
|
|
65
|
+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
|
|
66
|
+
steps:
|
|
67
|
+
- uses: actions/checkout@v4
|
|
68
|
+
|
|
69
|
+
- uses: actions/setup-python@v5
|
|
70
|
+
with:
|
|
71
|
+
python-version: ${{ matrix.python-version }}
|
|
72
|
+
|
|
73
|
+
- name: Install package with dev dependencies
|
|
74
|
+
run: pip install -e ".[dev]"
|
|
75
|
+
|
|
76
|
+
- name: Run tests
|
|
77
|
+
run: pytest --tb=short -q
|
|
78
|
+
|
|
79
|
+
build:
|
|
80
|
+
name: Producers build
|
|
81
|
+
runs-on: ubuntu-latest
|
|
82
|
+
needs: [format, test]
|
|
83
|
+
steps:
|
|
84
|
+
- uses: actions/checkout@v4
|
|
85
|
+
|
|
86
|
+
- uses: actions/setup-python@v5
|
|
87
|
+
with:
|
|
88
|
+
python-version: "3.12"
|
|
89
|
+
|
|
90
|
+
- name: Install build tools
|
|
91
|
+
run: pip install build
|
|
92
|
+
|
|
93
|
+
- name: Build sdist and wheel
|
|
94
|
+
run: python -m build
|
|
95
|
+
|
|
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
|
|
109
|
+
run: ls -la dist/
|
|
110
|
+
|
|
111
|
+
- uses: actions/upload-artifact@v4
|
|
112
|
+
with:
|
|
113
|
+
name: producers-dist
|
|
114
|
+
path: producers/dist/
|
|
@@ -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.1 → 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
|
|
@@ -11,11 +11,20 @@ build/
|
|
|
11
11
|
.venv/
|
|
12
12
|
venv/
|
|
13
13
|
env/
|
|
14
|
+
.adk/
|
|
14
15
|
uv.lock
|
|
16
|
+
.env
|
|
15
17
|
|
|
16
18
|
# Script outputs
|
|
17
19
|
scripts/reports/
|
|
18
20
|
|
|
21
|
+
# Example run artifacts
|
|
22
|
+
examples/*/reports/
|
|
23
|
+
examples/*/reports_*/
|
|
24
|
+
examples/*/trials_*/
|
|
25
|
+
scripts/**/*.log
|
|
26
|
+
examples/**/*.log
|
|
27
|
+
|
|
19
28
|
# Local workspace metadata
|
|
20
29
|
.code*/
|
|
21
30
|
deploy/streaming_evaluation/.streaming_evaluation_state.json
|
|
@@ -7,6 +7,193 @@ 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
|
+
|
|
86
|
+
## [0.3.2] - 2026-05-22
|
|
87
|
+
|
|
88
|
+
### Release highlights
|
|
89
|
+
|
|
90
|
+
The migration-v5 production track lands the design-partner asks from
|
|
91
|
+
[#187](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/187)
|
|
92
|
+
end-to-end: backfill mode, compiled-only extraction (with zero-LLM
|
|
93
|
+
guarantee), explicit FK→PK mapping that re-enables MAKO self-edges,
|
|
94
|
+
an opt-in orphan-session watchdog, the Beat 5 feedback / reward
|
|
95
|
+
loop in both the demo and the live notebook, hardened deploy
|
|
96
|
+
defaults (split SAs + tunable retries), and a Terraform module
|
|
97
|
+
mirroring the bash deploy. The migration-v5 cron path is now
|
|
98
|
+
complete for audit-critical production deployments.
|
|
99
|
+
|
|
100
|
+
### Added
|
|
101
|
+
|
|
102
|
+
- **Backfill mode for `materialize_window`** ([#188](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/188),
|
|
103
|
+
closes [#177](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/177))
|
|
104
|
+
— `bqaa-materialize-window --backfill --from / --to --state-key-suffix`
|
|
105
|
+
runs a one-shot historical window with isolated state-table
|
|
106
|
+
rows (the suffix folds into the `state_key` hash, so backfill
|
|
107
|
+
rows can't advance the steady-state cron checkpoint).
|
|
108
|
+
- **Compiled-only extraction mode + deploy path** ([#192](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/192),
|
|
109
|
+
[#193](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/193),
|
|
110
|
+
closes [#178](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/178))
|
|
111
|
+
— `--extraction-mode=compiled-only` routes the orchestrator
|
|
112
|
+
through structured extractors only, never calls `AI.GENERATE`,
|
|
113
|
+
surfaces uncovered spans as typed `empty_extraction` failures
|
|
114
|
+
with sample diagnostics. The deploy script (`#193`) stages
|
|
115
|
+
`reference_extractor.py` into the container, wires
|
|
116
|
+
`BQAA_REFERENCE_EXTRACTORS_MODULE`, and makes
|
|
117
|
+
`roles/aiplatform.user` conditional (idempotently removes the
|
|
118
|
+
grant when transitioning an existing ai-fallback deploy to
|
|
119
|
+
compiled-only). `TestCompiledOnlyMakesZeroLLMCalls` proves the
|
|
120
|
+
zero-LLM contract.
|
|
121
|
+
- **Explicit FK→PK mapping for binding columns** ([#191](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/191),
|
|
122
|
+
[#222](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/222),
|
|
123
|
+
closes [#179](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/179))
|
|
124
|
+
— `from_columns` / `to_columns` accept `list[dict[str, str]]`
|
|
125
|
+
shape (`[{src_decision_execution_id: id}]`) in addition to the
|
|
126
|
+
legacy `list[str]`. Materializer, validators, and the PG DDL
|
|
127
|
+
compiler consume the canonical
|
|
128
|
+
`ResolvedRelationship.from_column_mapping`. MAKO's
|
|
129
|
+
`evolvedFrom` / `supersededBy` self-edges are re-added to the
|
|
130
|
+
migration v5 binding.
|
|
131
|
+
- **Orphan-session watchdog** ([#224](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/224),
|
|
132
|
+
closes [#180](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/180))
|
|
133
|
+
— opt-in via `--max-session-age-hours N`. Each cron pass scans
|
|
134
|
+
for sessions whose first event is older than the cutoff but
|
|
135
|
+
which never emitted `AGENT_COMPLETED`; flags them as
|
|
136
|
+
`session_orphaned` failures and records the running set in the
|
|
137
|
+
state table (`mode='orphan_scan'` + `mode='orphan_ledger'`
|
|
138
|
+
rows). Strict `>` watermark, explicit timestamp-bound partition
|
|
139
|
+
pruning on the resolved-orphan probe.
|
|
140
|
+
- **Migration v5 Beat 5 — feedback / reward loop** ([#227](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/227),
|
|
141
|
+
[#228](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/228),
|
|
142
|
+
closes [#181](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/181),
|
|
143
|
+
[#184](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/184),
|
|
144
|
+
[#185](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/185))
|
|
145
|
+
— demo scope grows from 6 → 11 entities and 9 → 14
|
|
146
|
+
relationships. Adds `BusinessConstraint`,
|
|
147
|
+
`ConstraintApplication`, `RejectionReason`, `OutcomeSignal`,
|
|
148
|
+
`RewardComputation` + their edges. The demo agent emits four
|
|
149
|
+
new tools (`apply_constraint`, `record_rejection`,
|
|
150
|
+
`record_outcome_signal`, `compute_reward`); the reference
|
|
151
|
+
extractor covers all four; the notebook's new Beat 5 cells run
|
|
152
|
+
the two payoff GQL traversals end-to-end against a live
|
|
153
|
+
BigQuery scratch dataset (29 / 29 cells executed, counts 1–29,
|
|
154
|
+
6 unique reward rows + 8 unique rejection rows verified live).
|
|
155
|
+
- **Split runtime + scheduler-caller SAs by default** ([#230](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/230),
|
|
156
|
+
closes [#182](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/182))
|
|
157
|
+
— `deploy_cloud_run_job.sh` creates two SAs by default:
|
|
158
|
+
`bqaa-periodic-runtime-sa` (BigQuery + Vertex AI roles) and
|
|
159
|
+
`bqaa-periodic-scheduler-sa` (only `roles/run.invoker` on the
|
|
160
|
+
job). `--single-sa` is the escape hatch for the pre-#182
|
|
161
|
+
combined identity. Least-privilege: scheduler-caller never
|
|
162
|
+
needs BigQuery permissions.
|
|
163
|
+
- **Tunable `--max-retries` on Cloud Run Job** ([#230](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/230),
|
|
164
|
+
closes [#183](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/183))
|
|
165
|
+
— default 2 (was hard-coded 1). The orchestrator's session-
|
|
166
|
+
level idempotency + append-only state table make additional
|
|
167
|
+
retries safe. The retry count flows into `BQAA_MAX_RETRIES` on
|
|
168
|
+
the job's env so the runtime's startup log surfaces it in
|
|
169
|
+
`jsonPayload.max_retries` — operators correlating Cloud
|
|
170
|
+
Monitoring alert noise with retry behaviour see the policy
|
|
171
|
+
without `gcloud run jobs describe`.
|
|
172
|
+
- **Terraform module for periodic materialization** ([#231](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/231),
|
|
173
|
+
closes [#186](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/186))
|
|
174
|
+
— `examples/migration_v5/periodic_materialization/terraform/`
|
|
175
|
+
mirrors the bash deploy's resources (graph dataset, both SAs,
|
|
176
|
+
IAM bindings, Cloud Run v2 Job, Scheduler trigger) with
|
|
177
|
+
defaults matching `deploy_cloud_run_job.sh`'s post-#230
|
|
178
|
+
surface. New `build_image.sh` helper produces the staging
|
|
179
|
+
layout the runtime needs. Image build/publish are intentionally
|
|
180
|
+
outside the module — `var.image_uri` takes the published
|
|
181
|
+
container image. `var.manage_apis` enables the required APIs
|
|
182
|
+
on a clean project; `var.deletion_protection` matches the bash
|
|
183
|
+
deploy's lifecycle. Live-verified end-to-end against
|
|
184
|
+
`test-project-0728-467323`.
|
|
185
|
+
|
|
186
|
+
### Fixed
|
|
187
|
+
|
|
188
|
+
- **Orphan-watchdog empty-array streaming-insert crash hotfix** ([#225](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/225))
|
|
189
|
+
— BigQuery's streaming-insert API rejects empty
|
|
190
|
+
`ARRAY<STRING>` values with `Field value of
|
|
191
|
+
flagged_session_ids cannot be empty.`. Pre-fix, every cron
|
|
192
|
+
pass after [#224](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/224)
|
|
193
|
+
crashed at insert time. Fix: omit nullable columns from the
|
|
194
|
+
`insert_rows_json` payload when their value is `None` or
|
|
195
|
+
empty.
|
|
196
|
+
|
|
10
197
|
## [0.3.1] - 2026-05-18
|
|
11
198
|
|
|
12
199
|
### Release highlights
|
|
@@ -21,9 +21,9 @@ set -euo pipefail
|
|
|
21
21
|
REPO_ROOT="$(cd "$(dirname "$0")" && pwd)"
|
|
22
22
|
|
|
23
23
|
echo "==> Running isort (import sorting)..."
|
|
24
|
-
isort "${REPO_ROOT}/src/" "${REPO_ROOT}/tests/" "${REPO_ROOT}/examples/"
|
|
24
|
+
isort "${REPO_ROOT}/src/" "${REPO_ROOT}/tests/" "${REPO_ROOT}/examples/" "${REPO_ROOT}/scripts/"
|
|
25
25
|
|
|
26
26
|
echo "==> Running pyink (code formatting)..."
|
|
27
|
-
pyink --config "${REPO_ROOT}/pyproject.toml" "${REPO_ROOT}/src/" "${REPO_ROOT}/tests/" "${REPO_ROOT}/examples/"
|
|
27
|
+
pyink --config "${REPO_ROOT}/pyproject.toml" "${REPO_ROOT}/src/" "${REPO_ROOT}/tests/" "${REPO_ROOT}/examples/" "${REPO_ROOT}/scripts/"
|
|
28
28
|
|
|
29
29
|
echo "==> Done. All Python files formatted."
|
|
@@ -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
|