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