bigquery-agent-analytics 0.3.0__tar.gz → 0.3.2__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.2/.github/workflows/producers-ci.yml +100 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/.gitignore +9 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/CHANGELOG.md +220 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/PKG-INFO +1 -1
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/autoformat.sh +2 -2
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/README.md +1 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/README.md +261 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/migration_v5/binding.yaml +84 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/example_ontologies/__init__.py +25 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/example_ontologies/simple_request_flow.ttl +125 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/example_ontologies/simple_request_flow_config.py +45 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/mako_artifacts.py +229 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/migration_v5/mako_demo_agent.py +172 -3
- bigquery_agent_analytics-0.3.2/examples/migration_v5/ontology_artifacts.py +770 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/periodic_materialization/README.md +858 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/periodic_materialization/build_image.sh +189 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/periodic_materialization/deploy_cloud_run_job.sh +885 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/periodic_materialization/requirements.txt +36 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/periodic_materialization/run_job.py +548 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/periodic_materialization/terraform/.gitignore +9 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/periodic_materialization/terraform/README.md +185 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/periodic_materialization/terraform/main.tf +333 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/periodic_materialization/terraform/outputs.tf +38 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/periodic_materialization/terraform/terraform.tfvars.example +27 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/periodic_materialization/terraform/variables.tf +133 -0
- bigquery_agent_analytics-0.3.2/examples/migration_v5/periodic_materialization/terraform/versions.tf +31 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/migration_v5/property_graph.sql +51 -1
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/migration_v5/reference_extractor.py +293 -11
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/migration_v5/table_ddl.sql +12 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/migration_v5_demo_notebook.ipynb +840 -255
- bigquery_agent_analytics-0.3.2/producers/README.md +37 -0
- bigquery_agent_analytics-0.3.2/producers/pyproject.toml +88 -0
- bigquery_agent_analytics-0.3.2/producers/src/bigquery_agent_analytics_tracing/__init__.py +40 -0
- bigquery_agent_analytics-0.3.2/producers/src/bigquery_agent_analytics_tracing/_utils.py +168 -0
- bigquery_agent_analytics-0.3.2/producers/src/bigquery_agent_analytics_tracing/_writer_identity.py +52 -0
- bigquery_agent_analytics-0.3.2/producers/src/bigquery_agent_analytics_tracing/config.py +149 -0
- bigquery_agent_analytics-0.3.2/producers/src/bigquery_agent_analytics_tracing/drain.py +668 -0
- bigquery_agent_analytics-0.3.2/producers/src/bigquery_agent_analytics_tracing/logger.py +459 -0
- bigquery_agent_analytics-0.3.2/producers/src/bigquery_agent_analytics_tracing/schema.py +73 -0
- bigquery_agent_analytics-0.3.2/producers/tests/__init__.py +13 -0
- bigquery_agent_analytics-0.3.2/producers/tests/test_config.py +158 -0
- bigquery_agent_analytics-0.3.2/producers/tests/test_drain.py +309 -0
- bigquery_agent_analytics-0.3.2/producers/tests/test_logger_row_shape.py +290 -0
- bigquery_agent_analytics-0.3.2/producers/tests/test_schema.py +106 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/pyproject.toml +2 -1
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/scripts/README.md +116 -2
- bigquery_agent_analytics-0.3.2/scripts/latency_report.py +730 -0
- bigquery_agent_analytics-0.3.2/scripts/latency_report.sh +52 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/scripts/quality_report.py +389 -113
- bigquery_agent_analytics-0.3.2/scripts/sample_latency_report.md +169 -0
- bigquery_agent_analytics-0.3.2/scripts/sample_quality_report.md +138 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/cli.py +287 -0
- bigquery_agent_analytics-0.3.2/src/bigquery_agent_analytics/extracted_models.py +152 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/graph_validation.py +60 -21
- bigquery_agent_analytics-0.3.2/src/bigquery_agent_analytics/materialize_window.py +2391 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/ontology_graph.py +192 -12
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/ontology_materializer.py +77 -17
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/ontology_property_graph.py +55 -21
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/resolved_spec.py +54 -3
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/runtime_spec.py +24 -2
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/structured_extraction.py +104 -9
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_ontology/binding_loader.py +248 -1
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_ontology/binding_models.py +91 -6
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_ontology/graph_ddl_compiler.py +105 -5
- bigquery_agent_analytics-0.3.2/tests/test_binding_explicit_fk_mapping.py +908 -0
- bigquery_agent_analytics-0.3.2/tests/test_extract_graph_diagnostics_modes.py +565 -0
- bigquery_agent_analytics-0.3.2/tests/test_latency_report_helpers.py +304 -0
- bigquery_agent_analytics-0.3.2/tests/test_materialize_window.py +4602 -0
- bigquery_agent_analytics-0.3.2/tests/test_materialize_window_live.py +487 -0
- bigquery_agent_analytics-0.3.2/tests/test_migration_v5_ontology_artifacts.py +345 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_migration_v5_reference_extractor.py +164 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_ontology_materializer.py +170 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_ontology_property_graph.py +121 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_quality_report_helpers.py +315 -4
- bigquery_agent_analytics-0.3.0/examples/migration_v5/README.md +0 -182
- bigquery_agent_analytics-0.3.0/examples/migration_v5/mako_artifacts.py +0 -751
- bigquery_agent_analytics-0.3.0/scripts/sample_report.md +0 -164
- bigquery_agent_analytics-0.3.0/src/bigquery_agent_analytics/extracted_models.py +0 -57
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/.github/workflows/ci.yml +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/.github/workflows/release.yml +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/CODE_OF_CONDUCT.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/CONTRIBUTING.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/LICENSE +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/README.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/SDK.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/SECURITY.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/dashboard/README.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/dashboard/agent_analytics_dashboard.ipynb +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/dashboard/app.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/dashboard/requirements.txt +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/README.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/continuous_queries/README.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/continuous_queries/bigtable_dashboard.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/continuous_queries/pubsub_alerting.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/continuous_queries/realtime_error_analysis.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/continuous_queries/session_scoring.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/continuous_queries/setup_reservation.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/python_udf/README.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/python_udf/register.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/remote_function/README.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/remote_function/deploy.sh +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/remote_function/dispatch.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/remote_function/main.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/remote_function/register.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/streaming_evaluation/README.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/streaming_evaluation/main.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/streaming_evaluation/requirements.txt +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/streaming_evaluation/setup.sh +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/streaming_evaluation/trigger_query.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/deploy/streaming_evaluation/worker.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/context_graph_v2_design.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/context_graph_v3_design.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/design.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/entity_resolution_primitives.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_bka_measurement.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_bq_bundle_mirror.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_bundle_loader.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_diagnostics.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_orchestrator_swap.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_plan_parser.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_plan_resolver.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_retry_loop.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_revalidate_cli.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_revalidation.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_rollout_guide.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_runtime_fallback.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_runtime_registry.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_runtime_target.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_scaffolding.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/extractor_compilation_template_renderer.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/hatteras_evaluation.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/implementation_plan_concept_index_runtime.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/implementation_plan_remote_function.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/learning_ontology_and_context_graph.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/ontology/binding-validation.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/ontology/binding.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/ontology/cli.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/ontology/compilation.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/ontology/concept-index.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/ontology/ontology-build.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/ontology/ontology.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/ontology/owl-import.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/ontology/scaffold.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/ontology/validation.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/ontology_graph_v4_design.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/ontology_graph_v5_design.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/ontology_runtime_reader.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/prd_unified_analytics_interface.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/proposal_bigquery_agent_cli.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/python_udf_support_design.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/remote_function_rationale.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/docs/sdk_usage_tracking.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/README.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/.gitignore +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/A2A_JOINT_LINEAGE.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/BQ_STUDIO_WALKTHROUGH.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/DATA_LINEAGE.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/DEMO_NARRATION.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/README.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/analyst_agent/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/analyst_agent/agent.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/analyst_agent/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/analyst_agent/tools.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/bq_studio_queries.gql.tpl +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/build_joint_graph.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/build_org_graphs.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/caller_agent/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/caller_agent/agent.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/caller_agent/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/caller_agent/tools.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/campaigns.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/joint_property_graph.gql.tpl +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/receiver_agent/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/receiver_agent/agent.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/receiver_agent/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/render_queries.sh +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/reset.sh +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/run_analyst_agent.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/run_caller_agent.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/run_e2e_demo.sh +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/run_receiver_server.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/setup.sh +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/a2a_joint_lineage_demo/smoke_receiver.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/DEMO_NARRATION.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/README.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/agent/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/agent/agent.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/agent/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/agent/tools.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/agent_improvement/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/agent_improvement/config.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/agent_improvement/config_loader.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/agent_improvement/eval_runner.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/agent_improvement/improver_agent.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/agent_improvement/prompt_adapter.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/agent_improvement/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/agent_improvement/tool_introspection.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/config.json +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/demo.png +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/eval/eval_cases.json +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/eval/generate_traffic.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/eval/operational_metrics.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/eval/run_eval.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/overview.png +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/reset.sh +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/run_cycle.sh +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/run_improvement.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/setup.sh +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/setup_vertex.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/agent_improvement_cycle/show_prompt.sh +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/ai_classify_side_by_side.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/ai_forecast_side_by_side.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/ai_ml_integration_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/ai_similarity_validation.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/categorical_dashboard.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/categorical_evaluation_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/ci/README.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/ci/evaluate_thresholds.yml +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/ci_eval_pipeline.sh +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/cli_agent_tool.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/context_graph_adcp_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/continuous_query_alerting.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/dashboard_v2.ipynb +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/dashboard_v2_bigframes.ipynb +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/.gitignore +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/BQ_STUDIO_WALKTHROUGH.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/DATA_LINEAGE.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/DEMO_NARRATION.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/DEMO_QUESTIONS.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/README.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/SETUP_NEW_PROJECT.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/SLIDES.html +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/SLIDES.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/SLIDES.pptx +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/agent/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/agent/agent.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/agent/prompts.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/agent/tools.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/bq_studio_queries.gql.tpl +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/build_graph.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/build_rich_graph.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/campaigns.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/property_graph.gql.tpl +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/render_queries.sh +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/reset.sh +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/rich_property_graph.gql.tpl +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/run_agent.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/decision_lineage_demo/setup.sh +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/e2e_demo.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/e2e_demo_output.txt +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/e2e_notebook_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/event_semantics_views_bigframes_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/memory_service_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/migration_v5/.gitignore +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/migration_v5/export_events_jsonl.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/migration_v5/mako_core.ttl +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/migration_v5/ontology.yaml +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/migration_v5/revalidation_thresholds.json +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/migration_v5/run_agent.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/nba_agent_trace_analysis_notebook.ipynb +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/ontology_graph_v4_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/ontology_graph_v5_demo.ipynb +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/python_udf_eval_summary.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/python_udf_evaluation.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/python_udf_event_semantics.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/remote_function_dashboard.sql +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/examples/ymgo_graph_spec.yaml +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/scripts/quality_report.sh +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/_deploy_runtime.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/_ontology_routing.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/_streaming_evaluation.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/_telemetry.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/ai_ml_integration.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/bigframes_evaluator.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/binding_validation.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/categorical_evaluator.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/categorical_views.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/client.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/context_graph.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/eval_suite.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/eval_validator.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/evaluators.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/event_semantics.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/ast_validator.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/bq_bundle_mirror.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/bundle_loader.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/cli_revalidate.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/compiler.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/diagnostics.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/fingerprint.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/manifest.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/measurement.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/plan_parser.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/plan_resolver.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/retry_loop.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/revalidation.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/runtime_fallback.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/runtime_registry.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/smoke_test.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/subprocess_runner.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/extractor_compilation/template_renderer.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/feedback.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/formatter.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/grader_pipeline.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/insights.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/memory_service.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/multi_trial.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/ontology_models.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/ontology_orchestrator.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/ontology_runtime.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/ontology_schema_compiler.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/serialization.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/trace.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/trace_evaluator.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/ttl_importer.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/udf_kernels.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/udf_sql_templates.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_agent_analytics/views.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_ontology/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_ontology/_fingerprint.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_ontology/cli.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_ontology/concept_index.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_ontology/docs/user_manual.md +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_ontology/graph_ddl_models.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_ontology/ontology_loader.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_ontology/ontology_models.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_ontology/owl_importer.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/src/bigquery_ontology/scaffold.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/bigquery_ontology/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/bigquery_ontology/test_binding_loader.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/bigquery_ontology/test_binding_models.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/bigquery_ontology/test_cli.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/bigquery_ontology/test_compile_concept_index.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/bigquery_ontology/test_concept_index.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/bigquery_ontology/test_fingerprint.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/bigquery_ontology/test_graph_ddl_compiler.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/bigquery_ontology/test_ontology_models.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/bigquery_ontology/test_owl_importer.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/bigquery_ontology/test_scaffold.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/bigquery_ontology/test_scaffold_cli.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/fixtures/lineage_sessions.json +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/fixtures/mixed_events.json +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/fixtures/mixed_owl_skos.ttl +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/fixtures/skos_taxonomy.ttl +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/fixtures/test_binding.yaml +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/fixtures/test_combined_spec.yaml +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/fixtures/test_ontology.yaml +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/fixtures/yamo_sample.ttl +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/fixtures_extractor_compilation/__init__.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/fixtures_extractor_compilation/bka_decision_inputs.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/fixtures_extractor_compilation/bka_decision_measurement_report.json +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/fixtures_extractor_compilation/bka_decision_template.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/fixtures_extractor_compilation/plan_bka_decision.json +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_abstract_adapter_filter.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_ai_generate_judge_live.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_ai_ml_integration.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_ai_ml_integration_labels.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_bigframes_evaluator.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_binding_validation.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_bridge_hardening.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_categorical_evaluator.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_categorical_views.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_cli.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_client_labels.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_context_graph.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_context_graph_labels.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_dual_loader.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_eval_suite.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_eval_validator.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_event_semantics.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extracted_models.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation_bka_compile_live.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation_bq_bundle_mirror.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation_bq_bundle_mirror_live.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation_bundle_loader.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation_cli_revalidate.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation_cli_revalidate_bq_live.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation_diagnostics.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation_measurement.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation_plan_parser.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation_plan_resolver.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation_retry_loop.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation_revalidation.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation_runtime_fallback.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation_runtime_registry.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_extractor_compilation_template.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_feedback_labels.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_formatter.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_grader_pipeline.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_graph_validation.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_integration_ontology_binding.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_memory_service.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_memory_service_labels.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_multi_trial.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_ontology_graph.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_ontology_graph_from_bundles_root.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_ontology_labels.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_ontology_models.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_ontology_orchestrator.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_ontology_runtime.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_ontology_runtime_live.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_ontology_schema_compiler.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_owl_import_bridge.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_pr16_fixes.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_pr17_fixes.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_pr19_fixes.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_remote_function.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_resolved_spec.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_runtime_factory.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_runtime_spec.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_sdk_client.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_sdk_evaluators.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_sdk_feedback.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_sdk_insights.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_sdk_trace.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_serialization.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_streaming_evaluation.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_surface_tags.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_telemetry.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_trace_evaluator.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_trace_filter_factory.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_udf_kernels.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_udf_sql_generation.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_v5_golden.py +0 -0
- {bigquery_agent_analytics-0.3.0 → bigquery_agent_analytics-0.3.2}/tests/test_views.py +0 -0
|
@@ -0,0 +1,100 @@
|
|
|
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
|
+
- '.github/workflows/producers-ci.yml'
|
|
23
|
+
pull_request:
|
|
24
|
+
branches: [main]
|
|
25
|
+
paths:
|
|
26
|
+
- 'producers/**'
|
|
27
|
+
- '.github/workflows/producers-ci.yml'
|
|
28
|
+
|
|
29
|
+
concurrency:
|
|
30
|
+
group: producers-ci-${{ github.ref }}
|
|
31
|
+
cancel-in-progress: true
|
|
32
|
+
|
|
33
|
+
defaults:
|
|
34
|
+
run:
|
|
35
|
+
working-directory: producers
|
|
36
|
+
|
|
37
|
+
jobs:
|
|
38
|
+
format:
|
|
39
|
+
name: Producers format check
|
|
40
|
+
runs-on: ubuntu-latest
|
|
41
|
+
steps:
|
|
42
|
+
- uses: actions/checkout@v4
|
|
43
|
+
|
|
44
|
+
- uses: actions/setup-python@v5
|
|
45
|
+
with:
|
|
46
|
+
python-version: "3.12"
|
|
47
|
+
|
|
48
|
+
- name: Install formatting tools
|
|
49
|
+
run: pip install "pyink>=24.3.0" "isort>=5.0"
|
|
50
|
+
|
|
51
|
+
- name: isort --check
|
|
52
|
+
run: isort --check-only src/ tests/
|
|
53
|
+
|
|
54
|
+
- name: pyink --check
|
|
55
|
+
run: pyink --check src/ tests/
|
|
56
|
+
|
|
57
|
+
test:
|
|
58
|
+
name: Producers test (Python ${{ matrix.python-version }})
|
|
59
|
+
runs-on: ubuntu-latest
|
|
60
|
+
strategy:
|
|
61
|
+
fail-fast: false
|
|
62
|
+
matrix:
|
|
63
|
+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
|
|
64
|
+
steps:
|
|
65
|
+
- uses: actions/checkout@v4
|
|
66
|
+
|
|
67
|
+
- uses: actions/setup-python@v5
|
|
68
|
+
with:
|
|
69
|
+
python-version: ${{ matrix.python-version }}
|
|
70
|
+
|
|
71
|
+
- name: Install package with dev dependencies
|
|
72
|
+
run: pip install -e ".[dev]"
|
|
73
|
+
|
|
74
|
+
- name: Run tests
|
|
75
|
+
run: pytest --tb=short -q
|
|
76
|
+
|
|
77
|
+
build:
|
|
78
|
+
name: Producers build
|
|
79
|
+
runs-on: ubuntu-latest
|
|
80
|
+
needs: [format, test]
|
|
81
|
+
steps:
|
|
82
|
+
- uses: actions/checkout@v4
|
|
83
|
+
|
|
84
|
+
- uses: actions/setup-python@v5
|
|
85
|
+
with:
|
|
86
|
+
python-version: "3.12"
|
|
87
|
+
|
|
88
|
+
- name: Install build tools
|
|
89
|
+
run: pip install build
|
|
90
|
+
|
|
91
|
+
- name: Build sdist and wheel
|
|
92
|
+
run: python -m build
|
|
93
|
+
|
|
94
|
+
- name: List artifacts
|
|
95
|
+
run: ls -la dist/
|
|
96
|
+
|
|
97
|
+
- uses: actions/upload-artifact@v4
|
|
98
|
+
with:
|
|
99
|
+
name: producers-dist
|
|
100
|
+
path: producers/dist/
|
|
@@ -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,226 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.3.2] - 2026-05-22
|
|
11
|
+
|
|
12
|
+
### Release highlights
|
|
13
|
+
|
|
14
|
+
The migration-v5 production track lands the design-partner asks from
|
|
15
|
+
[#187](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/187)
|
|
16
|
+
end-to-end: backfill mode, compiled-only extraction (with zero-LLM
|
|
17
|
+
guarantee), explicit FK→PK mapping that re-enables MAKO self-edges,
|
|
18
|
+
an opt-in orphan-session watchdog, the Beat 5 feedback / reward
|
|
19
|
+
loop in both the demo and the live notebook, hardened deploy
|
|
20
|
+
defaults (split SAs + tunable retries), and a Terraform module
|
|
21
|
+
mirroring the bash deploy. The migration-v5 cron path is now
|
|
22
|
+
complete for audit-critical production deployments.
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
|
|
26
|
+
- **Backfill mode for `materialize_window`** ([#188](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/188),
|
|
27
|
+
closes [#177](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/177))
|
|
28
|
+
— `bqaa-materialize-window --backfill --from / --to --state-key-suffix`
|
|
29
|
+
runs a one-shot historical window with isolated state-table
|
|
30
|
+
rows (the suffix folds into the `state_key` hash, so backfill
|
|
31
|
+
rows can't advance the steady-state cron checkpoint).
|
|
32
|
+
- **Compiled-only extraction mode + deploy path** ([#192](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/192),
|
|
33
|
+
[#193](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/193),
|
|
34
|
+
closes [#178](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/178))
|
|
35
|
+
— `--extraction-mode=compiled-only` routes the orchestrator
|
|
36
|
+
through structured extractors only, never calls `AI.GENERATE`,
|
|
37
|
+
surfaces uncovered spans as typed `empty_extraction` failures
|
|
38
|
+
with sample diagnostics. The deploy script (`#193`) stages
|
|
39
|
+
`reference_extractor.py` into the container, wires
|
|
40
|
+
`BQAA_REFERENCE_EXTRACTORS_MODULE`, and makes
|
|
41
|
+
`roles/aiplatform.user` conditional (idempotently removes the
|
|
42
|
+
grant when transitioning an existing ai-fallback deploy to
|
|
43
|
+
compiled-only). `TestCompiledOnlyMakesZeroLLMCalls` proves the
|
|
44
|
+
zero-LLM contract.
|
|
45
|
+
- **Explicit FK→PK mapping for binding columns** ([#191](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/191),
|
|
46
|
+
[#222](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/222),
|
|
47
|
+
closes [#179](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/179))
|
|
48
|
+
— `from_columns` / `to_columns` accept `list[dict[str, str]]`
|
|
49
|
+
shape (`[{src_decision_execution_id: id}]`) in addition to the
|
|
50
|
+
legacy `list[str]`. Materializer, validators, and the PG DDL
|
|
51
|
+
compiler consume the canonical
|
|
52
|
+
`ResolvedRelationship.from_column_mapping`. MAKO's
|
|
53
|
+
`evolvedFrom` / `supersededBy` self-edges are re-added to the
|
|
54
|
+
migration v5 binding.
|
|
55
|
+
- **Orphan-session watchdog** ([#224](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/224),
|
|
56
|
+
closes [#180](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/180))
|
|
57
|
+
— opt-in via `--max-session-age-hours N`. Each cron pass scans
|
|
58
|
+
for sessions whose first event is older than the cutoff but
|
|
59
|
+
which never emitted `AGENT_COMPLETED`; flags them as
|
|
60
|
+
`session_orphaned` failures and records the running set in the
|
|
61
|
+
state table (`mode='orphan_scan'` + `mode='orphan_ledger'`
|
|
62
|
+
rows). Strict `>` watermark, explicit timestamp-bound partition
|
|
63
|
+
pruning on the resolved-orphan probe.
|
|
64
|
+
- **Migration v5 Beat 5 — feedback / reward loop** ([#227](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/227),
|
|
65
|
+
[#228](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/228),
|
|
66
|
+
closes [#181](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/181),
|
|
67
|
+
[#184](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/184),
|
|
68
|
+
[#185](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/185))
|
|
69
|
+
— demo scope grows from 6 → 11 entities and 9 → 14
|
|
70
|
+
relationships. Adds `BusinessConstraint`,
|
|
71
|
+
`ConstraintApplication`, `RejectionReason`, `OutcomeSignal`,
|
|
72
|
+
`RewardComputation` + their edges. The demo agent emits four
|
|
73
|
+
new tools (`apply_constraint`, `record_rejection`,
|
|
74
|
+
`record_outcome_signal`, `compute_reward`); the reference
|
|
75
|
+
extractor covers all four; the notebook's new Beat 5 cells run
|
|
76
|
+
the two payoff GQL traversals end-to-end against a live
|
|
77
|
+
BigQuery scratch dataset (29 / 29 cells executed, counts 1–29,
|
|
78
|
+
6 unique reward rows + 8 unique rejection rows verified live).
|
|
79
|
+
- **Split runtime + scheduler-caller SAs by default** ([#230](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/230),
|
|
80
|
+
closes [#182](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/182))
|
|
81
|
+
— `deploy_cloud_run_job.sh` creates two SAs by default:
|
|
82
|
+
`bqaa-periodic-runtime-sa` (BigQuery + Vertex AI roles) and
|
|
83
|
+
`bqaa-periodic-scheduler-sa` (only `roles/run.invoker` on the
|
|
84
|
+
job). `--single-sa` is the escape hatch for the pre-#182
|
|
85
|
+
combined identity. Least-privilege: scheduler-caller never
|
|
86
|
+
needs BigQuery permissions.
|
|
87
|
+
- **Tunable `--max-retries` on Cloud Run Job** ([#230](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/230),
|
|
88
|
+
closes [#183](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/183))
|
|
89
|
+
— default 2 (was hard-coded 1). The orchestrator's session-
|
|
90
|
+
level idempotency + append-only state table make additional
|
|
91
|
+
retries safe. The retry count flows into `BQAA_MAX_RETRIES` on
|
|
92
|
+
the job's env so the runtime's startup log surfaces it in
|
|
93
|
+
`jsonPayload.max_retries` — operators correlating Cloud
|
|
94
|
+
Monitoring alert noise with retry behaviour see the policy
|
|
95
|
+
without `gcloud run jobs describe`.
|
|
96
|
+
- **Terraform module for periodic materialization** ([#231](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/231),
|
|
97
|
+
closes [#186](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/issues/186))
|
|
98
|
+
— `examples/migration_v5/periodic_materialization/terraform/`
|
|
99
|
+
mirrors the bash deploy's resources (graph dataset, both SAs,
|
|
100
|
+
IAM bindings, Cloud Run v2 Job, Scheduler trigger) with
|
|
101
|
+
defaults matching `deploy_cloud_run_job.sh`'s post-#230
|
|
102
|
+
surface. New `build_image.sh` helper produces the staging
|
|
103
|
+
layout the runtime needs. Image build/publish are intentionally
|
|
104
|
+
outside the module — `var.image_uri` takes the published
|
|
105
|
+
container image. `var.manage_apis` enables the required APIs
|
|
106
|
+
on a clean project; `var.deletion_protection` matches the bash
|
|
107
|
+
deploy's lifecycle. Live-verified end-to-end against
|
|
108
|
+
`test-project-0728-467323`.
|
|
109
|
+
|
|
110
|
+
### Fixed
|
|
111
|
+
|
|
112
|
+
- **Orphan-watchdog empty-array streaming-insert crash hotfix** ([#225](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/225))
|
|
113
|
+
— BigQuery's streaming-insert API rejects empty
|
|
114
|
+
`ARRAY<STRING>` values with `Field value of
|
|
115
|
+
flagged_session_ids cannot be empty.`. Pre-fix, every cron
|
|
116
|
+
pass after [#224](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/224)
|
|
117
|
+
crashed at insert time. Fix: omit nullable columns from the
|
|
118
|
+
`insert_rows_json` payload when their value is `None` or
|
|
119
|
+
empty.
|
|
120
|
+
|
|
121
|
+
## [0.3.1] - 2026-05-18
|
|
122
|
+
|
|
123
|
+
### Release highlights
|
|
124
|
+
|
|
125
|
+
Focused follow-up to 0.3.0 that publishes the periodic-materialization
|
|
126
|
+
production path. The `bqaa-materialize-window` CLI merged after the
|
|
127
|
+
0.3.0 cut, so customers `pip install`-ing the SDK couldn't run the
|
|
128
|
+
cron path the migration v5 playbook documents. 0.3.1 closes that gap
|
|
129
|
+
and ships the surrounding deployment artifacts and a behavior fix:
|
|
130
|
+
|
|
131
|
+
- **`bqaa-materialize-window` CLI on PyPI** ([#162](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/162))
|
|
132
|
+
— cron-friendly scheduled-graph-refresh command, available as a
|
|
133
|
+
standalone console script and as a `bq-agent-sdk materialize-window`
|
|
134
|
+
subcommand.
|
|
135
|
+
- **Empty-extraction silent-failure mode closed** ([#167](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/167))
|
|
136
|
+
— `ok=true` is now an honest signal; per-session extraction
|
|
137
|
+
failures classify as `empty_extraction` vs `materialization_failed`
|
|
138
|
+
and flip `ok=false`. **Operator-visible behavior change** (see
|
|
139
|
+
Fixed).
|
|
140
|
+
- **Cloud Run Job + Cloud Scheduler example** ([#165](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/165),
|
|
141
|
+
[#166](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/166))
|
|
142
|
+
— packaged deployment template under
|
|
143
|
+
`examples/migration_v5/periodic_materialization/` with
|
|
144
|
+
one-command deploy + `--smoke` end-to-end verification.
|
|
145
|
+
- **Customer playbook** ([#168](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/168))
|
|
146
|
+
— the production cron path documented end-to-end: required
|
|
147
|
+
APIs/IAM, recommended schedules, JSON log shape, Cloud Monitoring
|
|
148
|
+
alerts, state-table inspection, teardown, troubleshooting.
|
|
149
|
+
|
|
150
|
+
### Added
|
|
151
|
+
|
|
152
|
+
- **`bqaa-materialize-window` console script** (PR
|
|
153
|
+
[#162](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/162)).
|
|
154
|
+
New cron-friendly entry point for keeping the materialized graph
|
|
155
|
+
fresh on a schedule. Shipped as a standalone console script
|
|
156
|
+
(`bqaa-materialize-window`) and as a `bq-agent-sdk
|
|
157
|
+
materialize-window` subcommand; both call paths share
|
|
158
|
+
`src/bigquery_agent_analytics/materialize_window.py`. Terminal-
|
|
159
|
+
event-driven discovery (`event_type = @completion_event_type`,
|
|
160
|
+
partition-pruned), pinned `run_started_at` snapshot, append-only
|
|
161
|
+
state table keyed on a content-derived `state_key` (project +
|
|
162
|
+
dataset + graph + events_table + ontology fingerprint + binding
|
|
163
|
+
fingerprint + discovery mode), overlap-windowed re-scan for
|
|
164
|
+
late-arriving events, per-session loop with idempotent retries
|
|
165
|
+
and checkpoint advance only on success, worst-status-wins
|
|
166
|
+
per-table aggregation, structured JSON report with C2 compiled-
|
|
167
|
+
extractor outcome counters (`compiled_unchanged` /
|
|
168
|
+
`compiled_filtered` / `fallback_for_event`), binding-validate
|
|
169
|
+
pre-flight, checkpoint that never regresses across overlap
|
|
170
|
+
re-scans, numeric/identifier guardrails at the boundary. Exit
|
|
171
|
+
codes: `0` clean, `1` expected failure (session error or
|
|
172
|
+
binding drift), `2` unexpected internal error.
|
|
173
|
+
|
|
174
|
+
- **Migration v5 Cloud Run Job + Cloud Scheduler example** in
|
|
175
|
+
[`examples/migration_v5/periodic_materialization/`](examples/migration_v5/periodic_materialization/)
|
|
176
|
+
(PRs
|
|
177
|
+
[#165](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/165),
|
|
178
|
+
[#166](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/166)).
|
|
179
|
+
Packaged Cloud Run Job + Cloud Scheduler deployment that wraps
|
|
180
|
+
`bqaa-materialize-window` for the migration v5 binding. One-
|
|
181
|
+
command `deploy_cloud_run_job.sh` creates a runtime service
|
|
182
|
+
account with narrow IAM (`dataViewer` on the events dataset,
|
|
183
|
+
`dataEditor` on the graph dataset, `bigquery.jobUser` +
|
|
184
|
+
`aiplatform.user` at the project, `run.invoker` on the job for
|
|
185
|
+
the scheduler SA), deploys the job, wires the Cloud Scheduler
|
|
186
|
+
trigger, and optionally runs `--smoke` to verify end-to-end in
|
|
187
|
+
one shot. IAM matrix, dataset-role contract (events read-only,
|
|
188
|
+
graph read/write), and live-deploy evidence captured against the
|
|
189
|
+
canonical test project.
|
|
190
|
+
|
|
191
|
+
- **Migration v5 periodic materialization playbook** in
|
|
192
|
+
[`examples/migration_v5/periodic_materialization/README.md`](examples/migration_v5/periodic_materialization/README.md)
|
|
193
|
+
(PR [#168](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/168)).
|
|
194
|
+
Documents the customer path for keeping the MAKO graph fresh on
|
|
195
|
+
a schedule: local dry-run via `run_job.py`, Cloud Run Job +
|
|
196
|
+
Cloud Scheduler deployment with `--smoke`, required APIs and
|
|
197
|
+
IAM, recommended schedules, Cloud Logging JSON report shape,
|
|
198
|
+
Cloud Monitoring alerts, state-table inspection, teardown, and
|
|
199
|
+
troubleshooting. Complements the migration v5 four-guarantee
|
|
200
|
+
notebook by covering the production cron path.
|
|
201
|
+
|
|
202
|
+
### Fixed
|
|
203
|
+
|
|
204
|
+
- **`materialize-window` no longer reports `ok=true` on silent
|
|
205
|
+
extraction failures** (PR
|
|
206
|
+
[#167](https://github.com/GoogleCloudPlatform/BigQuery-Agent-Analytics-SDK/pull/167)).
|
|
207
|
+
Previously, when per-event extraction returned an empty graph
|
|
208
|
+
(e.g., runtime SA missing `roles/aiplatform.user` so every
|
|
209
|
+
`AI.GENERATE` call failed and was swallowed), the orchestrator
|
|
210
|
+
reported `sessions_materialized == sessions_discovered`,
|
|
211
|
+
`ok=true`, and an empty `rows_materialized` dict. Operators
|
|
212
|
+
alerting on `jsonPayload.ok` saw "all good" while the entity
|
|
213
|
+
tables stayed empty. Now, after `materialize_with_status`
|
|
214
|
+
succeeds, the orchestrator inspects the materialized rows and
|
|
215
|
+
per-table statuses; sessions producing zero materialized rows
|
|
216
|
+
break the loop and classify the failure as
|
|
217
|
+
`empty_extraction` (extraction returned empty — check AI/IAM)
|
|
218
|
+
or `materialization_failed` (extraction produced rows but every
|
|
219
|
+
insert failed — check write perms / schema). `ok=false` is the
|
|
220
|
+
unmistakable red signal, and `failures[].error_code`
|
|
221
|
+
distinguishes the failure mode without log digging. Per-table
|
|
222
|
+
statuses now also surface in `result.table_statuses` for
|
|
223
|
+
failed sessions (previously only `ok` sessions contributed).
|
|
224
|
+
**Operator-visible behavior change**: alerts on
|
|
225
|
+
`jsonPayload.ok=false` are sufficient; no second-line
|
|
226
|
+
`rows_materialized == {}` check needed. The empty-window
|
|
227
|
+
heartbeat path (`sessions_discovered == 0`) is unchanged — an
|
|
228
|
+
idle cron firing still reports `ok=true`.
|
|
229
|
+
|
|
10
230
|
## [0.3.0] - 2026-05-15
|
|
11
231
|
|
|
12
232
|
### 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,6 +61,7 @@ architecture, rationale, and implementation plans behind key SDK features.
|
|
|
61
61
|
|
|
62
62
|
| Document | Description |
|
|
63
63
|
|----------|-------------|
|
|
64
|
+
| [Migration v5 periodic materialization playbook](../examples/migration_v5/periodic_materialization/README.md) | Customer deployment path for keeping the MAKO migration v5 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. |
|
|
64
65
|
| [proposal_bigquery_agent_cli.md](proposal_bigquery_agent_cli.md) | CLI proposal and command design |
|
|
65
66
|
| [python_udf_support_design.md](python_udf_support_design.md) | BigQuery Python UDF architecture |
|
|
66
67
|
| [remote_function_rationale.md](remote_function_rationale.md) | Cloud Run remote function rationale |
|