Refacto Agents

Industry story

BigQuery GA: Autonomous Embeddings and AI.SEARCH with 133x Efficiency Gain

agent-framework cost-compression inference orchestration tool-use

Google is making a real push to eliminate the external vector database from the AI pipeline. BigQuery's autonomous embedding generation is now GA, meaning embeddings are created and maintained as data lands, no custom ML glue required. The AI.SEARCH() function hits GA alongside it, with a 133x efficiency gain on single-query workloads that matters a lot if you're running agentic apps hammering concurrent low-latency queries. Hybrid search, combining vector and BM25 keyword matching, is in public preview and is the piece worth watching: if it actually cuts hallucination rates in RAG pipelines, the case for keeping a separate vector store gets harder to make.

Full analysis

Google Cloud has announced three BigQuery search milestones aimed at simplifying AI pipelines over unstructured data. Autonomous Embedding Generation is now generally available (GA), meaning BigQuery will automatically generate and maintain vector embeddings (numerical representations of text or images used for semantic search) as data is ingested. No external vector databases or custom ML pipelines required. The AI.SEARCH() function, also now GA, enables natural-language semantic search directly in SQL and has been optimized for single-query workloads, showing up to a 133x improvement in slot (compute unit) efficiency. That matters a lot for agentic applications that issue many concurrent, low-latency queries.

Also entering Public Preview is Hybrid Search, which combines semantic vector search with traditional keyword (lexical) matching using algorithms like BM25 and Reciprocal Rank Fusion. This matters for agent-powered RAG pipelines (retrieval-augmented generation, the pattern where an LLM is grounded in retrieved documents) because pure vector search can miss precise technical identifiers; hybrid mode improves retrieval precision and, Google claims, reduces LLM hallucination rates. Together these features are positioned as a native, end-to-end unstructured data analytics platform inside BigQuery, covering ingestion, chunking, embedding, search, graph traversal, and conversational analytics agents.

Comments