<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Generative AI topics</title>
    <link>https://community.databricks.com/t5/generative-ai/bd-p/GenAI-Insight-Hub</link>
    <description>Generative AI topics</description>
    <pubDate>Wed, 16 Sep 2026 20:31:39 GMT</pubDate>
    <dc:creator>GenAI-Insight-Hub</dc:creator>
    <dc:date>2026-09-16T20:31:39Z</dc:date>
    <item>
      <title>Before dropping a column, check whether Genie has been using it</title>
      <link>https://community.databricks.com/t5/generative-ai/before-dropping-a-column-check-whether-genie-has-been-using-it/m-p/168854#M2074</link>
      <description>&lt;P&gt;I was reviewing a schema change recently and wanted a quick answer to a simple question:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Could this column be used by a Genie Agent somewhere without me realizing it?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;There's now a pretty useful way to check I want to share with you.&lt;/P&gt;&lt;P&gt;Databricks' March 25, 2026 release notes introduced &lt;EM&gt;entity_metadata.genie_space_id&lt;/EM&gt; in both &lt;EM&gt;system.access.column_lineage&lt;/EM&gt; and &lt;EM&gt;system.access.table_lineage&lt;/EM&gt;. The field identifies the Genie Agent when a lineage record originates from it querying data (see&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/release-notes/product/2026/march" target="_blank" rel="noopener"&gt;March 2026 | Databricks on AWS&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;For a column such as &lt;EM&gt;customer_segment&lt;/EM&gt;, I can start with this query:&lt;/P&gt;&lt;PRE&gt;SELECT
    workspace_id,
    entity_metadata.genie_space_id AS genie_space_id,
    direct_access,
    COUNT(DISTINCT event_id) AS observed_events,
    MAX(event_time) AS last_seen
FROM system.access.column_lineage
WHERE source_table_full_name = 'prod.sales.orders'
  AND source_column_name = 'customer_segment'
  AND entity_metadata.genie_space_id IS NOT NULL
  AND event_date &amp;gt;= date_sub(current_date(), 90)
GROUP BY
    workspace_id,
    entity_metadata.genie_space_id,
    direct_access
ORDER BY last_seen DESC;&lt;/PRE&gt;&lt;P&gt;I can run this from a Unity Catalog-enabled workspace where I have access to the lineage system tables.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use the result set to inspect observed usage by workspace, Genie ID, and direct-access status. &lt;EM&gt;observed_events&lt;/EM&gt; counts distinct lineage events. I do not treat it as a count of user questions or conversations. &lt;EM&gt;last_seen&lt;/EM&gt; gives me the latest recorded lineage timestamp inside the selected window.&lt;/P&gt;&lt;H3&gt;I keep indirect access in the result&lt;/H3&gt;&lt;P&gt;&lt;EM&gt;direct_access = false&lt;/EM&gt; means the source is a dependency discovered through view expansion.&lt;/P&gt;&lt;P&gt;A Genie Agent can query a view while the recorded lineage points to an underlying column. If I filter the query to direct access, I miss those records.&lt;/P&gt;&lt;P&gt;That distinction matters during a schema review because the team changing the base table may never see the base table referenced in the Genie-facing query.&lt;/P&gt;&lt;H3&gt;An empty result does not prove the change is safe&lt;/H3&gt;&lt;P&gt;I treat an empty result as absence of matching recorded lineage in the window I queried. I do not treat it as proof that nothing depends on the column.&lt;/P&gt;&lt;P&gt;A Genie Agent may not have used the column during the lookback period. Databricks emits lineage records when it can infer lineage, so the lineage tables do not capture every read or write event.&lt;/P&gt;&lt;P&gt;I also account for the scope and latency of the system tables. These lineage tables cover workspaces in the account within the same cloud region, and system-table updates are not real-time. Recent activity may not appear yet.&lt;/P&gt;&lt;P&gt;The SQL does not perform recursive dependency traversal through downstream tables that separate jobs populate.&lt;/P&gt;&lt;P&gt;A chain such as:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;orders &amp;gt; ETL job &amp;gt; summary table &amp;gt; Genie&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;needs a broader dependency review. This query does not connect those separate lineage events for me.&lt;/P&gt;&lt;H3&gt;I pair observed usage with configuration review&lt;/H3&gt;&lt;P&gt;For higher-risk changes, I also inspect Genie configuration, including relevant agents that did not appear in the lineage results.&lt;/P&gt;&lt;P&gt;I check example SQL, instructions, join expressions, and referenced views or functions.&lt;/P&gt;&lt;P&gt;The Genie API can return a serialized configuration through:&lt;/P&gt;&lt;PRE&gt;GET /api/2.0/genie/spaces/{space_id}?include_serialized_space=true&lt;/PRE&gt;&lt;P&gt;Requesting that export requires at least &lt;STRONG&gt;CAN EDIT&lt;/STRONG&gt; permission on the agent. The exported configuration includes data sources and instructions, including example SQL and function references.&lt;/P&gt;&lt;P&gt;I do not stop at the attached-table list. Genie can query other tables for which it has Unity Catalog permissions, including tables referenced in instructions or generated queries.&lt;/P&gt;&lt;P&gt;For table renames or drops, I use the same approach with &lt;EM&gt;system.access.table_lineage&lt;/EM&gt;: I change the system table and remove the &lt;EM&gt;source_column_name&lt;/EM&gt; predicate. The Genie metadata is available there as well.&lt;/P&gt;&lt;P&gt;My deployment review follows this sequence:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Proposed schema change &amp;gt; inspect Genie lineage &amp;gt; review dependencies and configurations &amp;gt; test &amp;gt; deploy&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I use the lineage query as the starting point for investigating observed dependencies. It is evidence for the review, not automatic approval to change the schema.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 19:14:29 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/before-dropping-a-column-check-whether-genie-has-been-using-it/m-p/168854#M2074</guid>
      <dc:creator>ivanvyd</dc:creator>
      <dc:date>2026-09-16T19:14:29Z</dc:date>
    </item>
    <item>
      <title>How do you test whether a retriever stops too early?</title>
      <link>https://community.databricks.com/t5/generative-ai/how-do-you-test-whether-a-retriever-stops-too-early/m-p/168356#M2068</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;Databricks’ &lt;A href="https://www.databricks.com/blog/adaptive-instructed-retriever-frontier-quality-search-2x-lower-latency" target="_self"&gt;Adaptive Instructed-Retriever announcement&lt;/A&gt;⁠ describes a model that learns when to stop searching. &lt;STRONG&gt;How would you test whether it stops after finding a general policy but before finding the exception that changes the answer?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I’d consider an offline test using questions with reviewed supporting evidence. Where the implementation allows it, continue early-stopped runs from the same history with a small extra search budget. Keep the model, corpus and final passage count fixed, then measure how often further search recovers missing evidence.&lt;/P&gt;&lt;P&gt;I’d measure evidence coverage separately from answer quality. An unsuccessful extra search wouldn’t prove the original retrieval was complete, either.&lt;/P&gt;&lt;P&gt;Has anyone tried something similar? What baseline or metric helped you judge whether the latency savings justified the risk of missing evidence? I am very eager to get your thoughts.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2026 12:12:48 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/how-do-you-test-whether-a-retriever-stops-too-early/m-p/168356#M2068</guid>
      <dc:creator>ivanvyd</dc:creator>
      <dc:date>2026-09-11T12:12:48Z</dc:date>
    </item>
    <item>
      <title>Enterprise workspace blocked by Databricks-set rate limit of 0 on all models (AWS Marketplace)</title>
      <link>https://community.databricks.com/t5/generative-ai/enterprise-workspace-blocked-by-databricks-set-rate-limit-of-0/m-p/168162#M2065</link>
      <description>&lt;P&gt;I'm on an Enterprise plan (billed via AWS Marketplace, active payment method, $399 credit remaining) and every model in my Unity AI Gateway — glm-5-3-flash, claude-opus-5, grok-4-6, gpt-5-6-sol, etc. — returns:&lt;/P&gt;&lt;P&gt;"error_code":"PERMISSION_DENIED","message":"PERMISSION_DENIED: The endpoint is temporarily disabled due to a Databricks-set rate limit of 0."&lt;/P&gt;&lt;P&gt;The workspace. I've checked:&lt;BR /&gt;- AI Gateway rate limits on individual models — not configured (blank, not 0)&lt;BR /&gt;- Budgets tab — "No budgets apply"&lt;BR /&gt;- Plan tier — confirmed Enterprise, not trial/Free Edition&lt;/P&gt;&lt;P&gt;Setting my own rate limits in the UI doesn't override this either. This looks like the same Databricks-imposed 0-rate-limit issue described in an earlier thread (&lt;A href="https://community.databricks.com/t5/generative-ai/permission-denied-the-endpoint-is-temporarily-disabled-due-to-a/td-p/150773" target="_blank"&gt;https://community.databricks.com/t5/generative-ai/permission-denied-the-endpoint-is-temporarily-disabled-due-to-a/td-p/150773&lt;/A&gt;), and also matches other recent reports of this happening on paid/Premium accounts, not just trials.&lt;/P&gt;&lt;P&gt;I don't have a support subscription to open a ticket directly. Can someone from Databricks help get my workspace moved off whatever trust tier is causing this?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2026 05:31:14 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/enterprise-workspace-blocked-by-databricks-set-rate-limit-of-0/m-p/168162#M2065</guid>
      <dc:creator>khanzada</dc:creator>
      <dc:date>2026-09-10T05:31:14Z</dc:date>
    </item>
    <item>
      <title>Genie Agent response Export to PDF via API</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-agent-response-export-to-pdf-via-api/m-p/167892#M2061</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Got a need to invoke the Genie Agent chat (in agent mode) via API, and on the request completion, export the agent response in PDF and share the exported PDF in email.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt;Am already using 'Agent Mode Create Response' endpoint to invoke the chat programmatically.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;A href="https://docs.databricks.com/api/genie/v1/agent-mode-create-response" target="_blank"&gt;https://docs.databricks.com/api/genie/v1/agent-mode-create-response&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;What's the best way to export the response in PDF? I know there is no explicit endpoint to achieve the same.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Guna.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Sep 2026 09:39:19 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-agent-response-export-to-pdf-via-api/m-p/167892#M2061</guid>
      <dc:creator>GunaR</dc:creator>
      <dc:date>2026-09-08T09:39:19Z</dc:date>
    </item>
    <item>
      <title>Genie Agent content search on a managed volume fails with "The request was invalid"</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-agent-content-search-on-a-managed-volume-fails-with-quot/m-p/167547#M2056</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to enable content search on a Unity Catalog managed volume so a Genie Agent can answer questions over PDFs. The Enable action fails every time with:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"Failed to update content search - The request was invalid."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Environment: AWS, eu-west-2 (London), serverless workspace on Default Storage, pay-as-you-go. This started as a trial and the failure is identical before and after adding a payment method.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I have verified:&lt;/P&gt;&lt;P&gt;- Preview "Analyze Files in Volumes with Genie Agents" is enabled.&lt;/P&gt;&lt;P&gt;- The volume is a managed volume. Catalog binding is "All workspaces have access" (OPEN). Reproduced on two catalogs, including a freshly created one.&lt;/P&gt;&lt;P&gt;- I have CAN MANAGE on the volume.&lt;/P&gt;&lt;P&gt;- ai_parse_document() runs successfully on the PDFs in the volume.&lt;/P&gt;&lt;P&gt;- Foundation Model APIs work (ai_query succeeds).&lt;/P&gt;&lt;P&gt;- Lakebase is available in the region.&lt;/P&gt;&lt;P&gt;- I can create a Vector Search endpoint via the API and it comes ONLINE.&lt;/P&gt;&lt;P&gt;- Files are 4 PDFs, each under 10 MB.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Without content search the agent does not retrieve the files ("no relevant content from the reports directory"), so document and hybrid questions are not possible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Questions:&lt;/P&gt;&lt;P&gt;1. Is content search supported on Default Storage / serverless-only workspaces? It is not listed under the Default Storage limitations, but it is the one variable I cannot rule out.&lt;/P&gt;&lt;P&gt;2. Is there a way to get a more detailed error than "The request was invalid"? No public API seems to expose this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Happy to share the request ID from the browser network log if that helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2026 14:08:06 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-agent-content-search-on-a-managed-volume-fails-with-quot/m-p/167547#M2056</guid>
      <dc:creator>mramanindia</dc:creator>
      <dc:date>2026-09-04T14:08:06Z</dc:date>
    </item>
    <item>
      <title>Databricks-Native AI Agent for Job Incident Detection, RCA &amp; Safe Remediation</title>
      <link>https://community.databricks.com/t5/generative-ai/databricks-native-ai-agent-for-job-incident-detection-rca-amp/m-p/167659#M2052</link>
      <description>&lt;P&gt;I’m exploring an architecture for a &lt;STRONG&gt;Databricks-native AI Agent for intelligent Spark job incident detection, root cause analysis (RCA), and safe remediation&lt;/STRONG&gt;, and I would love your technical feedback.&lt;/P&gt;&lt;H3&gt;&lt;STRONG&gt;The Problem&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;A common operational challenge is the &lt;STRONG&gt;"Silent Long-Runner"&lt;/STRONG&gt; or stalled workload—for example, a Spark job that normally finishes in &lt;STRONG&gt;~1 hour&lt;/STRONG&gt; suddenly runs for &lt;STRONG&gt;8+ hours&lt;/STRONG&gt; with zero meaningful progress, wasting DBUs and blocking pipelines.&lt;/P&gt;&lt;P&gt;Currently, investigating this requires engineers to manually correlate disparate data sources:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Spark UI:&lt;/STRONG&gt; Job/Stage DAGs, Task skew, stragglers, shuffle memory/disk spill.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Compute State:&lt;/STRONG&gt; Driver/Executor availability, OOMs, memory pressure, thread dumps.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Logs &amp;amp; I/O:&lt;/STRONG&gt; Driver/executor logs and real-time input/output progression.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Historical Context:&lt;/STRONG&gt; Baseline metrics from past successful runs.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;&lt;STRONG&gt;Proposed Concept: Execution-Aware Agentic Intelligence&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;Instead of a simple log-parsing chatbot, the goal is a &lt;STRONG&gt;closed-loop agent framework&lt;/STRONG&gt; built on Databricks-native capabilities (System Tables, MLflow, Agent Framework/MCP, Unity Catalog):&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Baseline Learning:&lt;/STRONG&gt; Dynamically detects anomalies against historical execution patterns instead of static time limits.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Multi-Signal RCA &amp;amp; Evidence Chain:&lt;/STRONG&gt; Correlates live Spark UI metrics, logs, and compute telemetry to yield an explainable diagnosis (e.g., &lt;I&gt;"Root Cause: Executor OOM &amp;amp; Disk Spill Skew — 92% Confidence"&lt;/I&gt;).&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Policy-Governed Remediation:&lt;/STRONG&gt; Uses an &lt;STRONG&gt;Observe → Recommend → Auto-Remediate&lt;/STRONG&gt; model, requiring Human-in-the-Loop (HITL) approval for high-risk actions (e.g., job cancellation, cluster resizing).&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Closed Feedback Loop:&lt;/STRONG&gt; Captures whether actions resolved the issue to continuously improve accuracy and quantify DBU/cost savings.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;H3&gt;&lt;STRONG&gt;Questions for the Community&lt;/STRONG&gt;&lt;/H3&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Telemetry Access:&lt;/STRONG&gt; How much granular Spark UI data (stage progress, task skew, shuffle details) can be programmatically accessed in real time via System Tables or APIs?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Native Pattern:&lt;/STRONG&gt; What native capabilities would you recommend for correlating these runtime and log signals efficiently?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Remediation Safety:&lt;/STRONG&gt; What guardrails or design patterns do you recommend for automated or HITL actions on running jobs?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Prior Art:&lt;/STRONG&gt; Has anyone built or tested a similar agentic incident detection workflow inside Databricks?&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Would love to hear your thoughts, feedback, or architectural suggestions!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#genAI #dataengineering #AIagent&lt;/P&gt;</description>
      <pubDate>Sat, 05 Sep 2026 11:29:57 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/databricks-native-ai-agent-for-job-incident-detection-rca-amp/m-p/167659#M2052</guid>
      <dc:creator>VibinRoy_C</dc:creator>
      <dc:date>2026-09-05T11:29:57Z</dc:date>
    </item>
    <item>
      <title>Genie - Cost monitoring and usage</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-cost-monitoring-and-usage/m-p/167638#M2049</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;Genie is widely used within our department, and we would like to establish appropriate governance around its usage. Do we have any existing guidelines or recommended practices for this? In particular, we are looking for guidance on:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Cost monitoring: How can we monitor Genie usage, including who is using it and the associated consumption or cost?&lt;/LI&gt;&lt;LI&gt;Usage limits: Is it possible to set an upper limit or other controls to restrict Genie usage?Any relevant documentation, recommendations, or examples would be appreciated.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Regards - Sanjeeb&lt;/P&gt;</description>
      <pubDate>Sat, 05 Sep 2026 05:42:31 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-cost-monitoring-and-usage/m-p/167638#M2049</guid>
      <dc:creator>Sanjeeb2024</dc:creator>
      <dc:date>2026-09-05T05:42:31Z</dc:date>
    </item>
    <item>
      <title>Can Unity AI Gateway Model Service guardrails protect an existing LangGraph agent deployed as a Data</title>
      <link>https://community.databricks.com/t5/generative-ai/can-unity-ai-gateway-model-service-guardrails-protect-an/m-p/167376#M2044</link>
      <description>&lt;P&gt;I have a LangGraph agent deployed as a Unity Catalog model on a&lt;BR /&gt;Databricks Serving Endpoint.&lt;/P&gt;&lt;P&gt;Architecture:&lt;/P&gt;&lt;P&gt;User&lt;BR /&gt;↓&lt;BR /&gt;Databricks Serving Endpoint&lt;BR /&gt;↓&lt;BR /&gt;UC Model: ai_workspace.agent.agent&lt;BR /&gt;↓&lt;BR /&gt;LangGraph agent&lt;BR /&gt;↓&lt;BR /&gt;LLM + tools&lt;/P&gt;&lt;P&gt;The serving endpoint shows "AI Gateway enabled", but the endpoint&lt;BR /&gt;configuration currently only shows:&lt;/P&gt;&lt;P&gt;ai_gateway:&lt;BR /&gt;usage_tracking_config:&lt;BR /&gt;enabled: true&lt;/P&gt;&lt;P&gt;I am trying to enable the Unity AI Gateway guardrails.&lt;/P&gt;&lt;P&gt;In the Unity AI Gateway UI, I can create a "Model Service" and configure&lt;BR /&gt;guardrails. However, when selecting the destination model, my existing&lt;BR /&gt;agent/UC model:&lt;/P&gt;&lt;P&gt;ai_workspace.agent.agent does not appear.&lt;/P&gt;&lt;P&gt;The available destinations appear to be Databricks-hosted foundation&lt;BR /&gt;models such as Claude, GPT, Qwen, etc.&lt;/P&gt;&lt;P&gt;so&lt;/P&gt;&lt;P&gt;1. Can a Unity AI Gateway Model Service be placed in front of an existing&lt;BR /&gt;LangGraph agent deployed on a Databricks Serving Endpoint?&lt;/P&gt;&lt;P&gt;2. If not, can the Model Service be used by the LangGraph agent as the&lt;BR /&gt;LLM endpoint, so that guardrails can be enabled for the LLM calls?&lt;/P&gt;&lt;P&gt;3. Does the Unity AI Gateway j guardrail protect the entire&lt;BR /&gt;agent execution path, including LangGraph tool calls, or only the&lt;BR /&gt;request/response to the underlying model?&lt;/P&gt;&lt;P&gt;4. What is the recommended Databricks architecture for applying&lt;BR /&gt;prompt-injection/jailbreak(Guardraiils) protection to a custom LangGraph agent?&lt;/P&gt;&lt;P&gt;5. For an agent serving endpoint, is "AI Gateway enabled" currently&lt;BR /&gt;limited to usage tracking/inference tables rather than the newer&lt;BR /&gt;Unity AI Gateway service-policy guardrails?&lt;/P&gt;&lt;P&gt;I would especially appreciate clarification from someone familiar with&lt;BR /&gt;the current Unity AI Gateway + Agent Serving + Guardrails architecture.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Sep 2026 06:51:04 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/can-unity-ai-gateway-model-service-guardrails-protect-an/m-p/167376#M2044</guid>
      <dc:creator>HariUmeshNaraya</dc:creator>
      <dc:date>2026-09-03T06:51:04Z</dc:date>
    </item>
    <item>
      <title>How to get started with Genie Ontlogy?</title>
      <link>https://community.databricks.com/t5/generative-ai/how-to-get-started-with-genie-ontlogy/m-p/164367#M2041</link>
      <description>&lt;P&gt;Hello Databricks Community,&lt;/P&gt;&lt;P&gt;I recently started exploring Genie Ontology and would like to implement it as part of a POC. However, I'm not sure how to get started.&lt;/P&gt;&lt;P&gt;I have a few questions:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;What are the prerequisites for using Genie Ontology?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;How do I build and configure an ontology from scratch?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Are there any official guides, best practices, or sample implementations that you would recommend?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Is Genie Ontology currently in Public Preview, Private Preview, or General Availability?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Where should I be able to access it in the Databricks workspace? I don't see the Genie Ontology option or icon in my workspace, so I'm wondering if there are any workspace requirements, feature flags, or permissions that need to be enabled.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;If anyone has already worked with Genie Ontology, I'd really appreciate any guidance, documentation, or tips on getting started.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2026 07:04:40 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/how-to-get-started-with-genie-ontlogy/m-p/164367#M2041</guid>
      <dc:creator>Niyojit</dc:creator>
      <dc:date>2026-07-29T07:04:40Z</dc:date>
    </item>
    <item>
      <title>Best Practices for Deploying Custom LLM Pipelines on Databricks?</title>
      <link>https://community.databricks.com/t5/generative-ai/best-practices-for-deploying-custom-llm-pipelines-on-databricks/m-p/167118#M2039</link>
      <description>&lt;P&gt;Hi community,&lt;/P&gt;&lt;P&gt;We are currently designing an enterprise-grade LLM pipeline on Databricks to handle end-to-end data processing, model fine-tuning, and inference serving.&lt;/P&gt;&lt;P&gt;While Spark handles our data orchestration effectively, we are looking at optimizing model latency and integration with custom frontend/backend architectures. For reference, we've been following design patterns similar to those used in &lt;A class="" href="https://exrwebflow.com/llm-development-services/" target="_blank" rel="noopener"&gt;LLM Development Services&lt;/A&gt; to structure custom AI solutions.&lt;/P&gt;&lt;P&gt;A few questions for the group:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Serving Options:&lt;/STRONG&gt; How are you balancing Databricks Model Serving with external API endpoints in high-throughput applications?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Vector Search &amp;amp; Storage:&lt;/STRONG&gt; Are you predominantly using Databricks Vector Search, or integrating third-party vector databases for custom retriever pipelines?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Monitoring:&lt;/STRONG&gt; What tools or logging setups have worked best for tracking drift and hallucinations in production?&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Would love to hear how other teams are structuring their LLM architecture on the platform!&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2026 10:44:42 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/best-practices-for-deploying-custom-llm-pipelines-on-databricks/m-p/167118#M2039</guid>
      <dc:creator>exrwebflowai</dc:creator>
      <dc:date>2026-09-01T10:44:42Z</dc:date>
    </item>
    <item>
      <title>Premium pay-as-you-go account still blocked by Databricks-set rate limit of 0</title>
      <link>https://community.databricks.com/t5/generative-ai/premium-pay-as-you-go-account-still-blocked-by-databricks-set/m-p/166879#M2038</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I’m having an issue using the Databricks Foundation Model API.&lt;/P&gt;&lt;P&gt;My account is on the Premium plan, I have a valid payment method attached, and I currently have trial credits available. However, when I try to use the GLM Foundation Model endpoint, every request returns:&lt;/P&gt;&lt;P&gt;403 PERMISSION_DENIED: The endpoint is temporarily disabled due to a Databricks-set rate limit of 0.&lt;/P&gt;&lt;P&gt;I understand from previous Databricks Community answers that this can happen when a workspace remains in the TRIAL_VERIFIED trust tier, and that adding a payment method does not necessarily move the workspace to PAYABLE_VERIFIED.&lt;/P&gt;&lt;P&gt;I already contacted Databricks Support (ticket #01003452), but they closed the ticket because I do not have a separate support package and recommended that I ask here instead.&lt;/P&gt;&lt;P&gt;This is a personal Premium pay-as-you-go account, not a company/enterprise account.&lt;/P&gt;&lt;P&gt;Could a Databricks employee or community engineer please help clarify:&lt;/P&gt;&lt;P&gt;1. Is my workspace likely still in the TRIAL_VERIFIED trust tier?&lt;BR /&gt;2. How can an individual Premium pay-as-you-go customer get moved to PAYABLE_VERIFIED?&lt;BR /&gt;3. Who can remove the Databricks-set rate limit of 0 if standard Support cannot help?&lt;BR /&gt;4. Is there anything I can do from the Account Console to enable the GLM Foundation Model API?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2026 10:08:13 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/premium-pay-as-you-go-account-still-blocked-by-databricks-set/m-p/166879#M2038</guid>
      <dc:creator>LeMi-1</dc:creator>
      <dc:date>2026-08-31T10:08:13Z</dc:date>
    </item>
    <item>
      <title>How Can a Databricks App Render the Same Detailed Response as the Genie UI?</title>
      <link>https://community.databricks.com/t5/generative-ai/how-can-a-databricks-app-render-the-same-detailed-response-as/m-p/166840#M2034</link>
      <description>&lt;P&gt;I’m building a Databricks App with a Genie Space at the core and have run into a difference between the Genie UI and the Genie Conversation API.&lt;/P&gt;&lt;P&gt;For the same business question, the Genie web UI can produce a detailed response containing an executive summary, breakdowns, query-backed results, and visualizations.&lt;/P&gt;&lt;P&gt;When I invoke the same Genie Space from a Databricks App using the Databricks SDK (start_conversation_and_wait / create_message_and_wait), the returned narrative is often significantly shorter.&lt;/P&gt;&lt;P&gt;I also inspected the message attachments. In some Genie UI conversations, much of the detailed analysis appears to be represented through SQL/query/visualization attachments rather than a complete text attachment.&lt;/P&gt;&lt;P&gt;I tried retrieving query-attachment results through the Genie SDK/API, but I have not yet been able to reproduce the same detailed experience that is visible in the Genie web UI.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Questions:&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Is the detailed narrative displayed in the Genie web UI always available through the Conversation API, or does the UI perform additional client-side synthesis/rendering?&lt;/LI&gt;&lt;LI&gt;What is the recommended API/SDK method for retrieving the &lt;STRONG&gt;result data&lt;/STRONG&gt; associated with every query attachment returned by a Genie message?&lt;/LI&gt;&lt;LI&gt;Can Genie-generated visualizations from the web UI be retrieved/rendered in a Databricks App?&lt;/LI&gt;&lt;LI&gt;Is there a supported way for a Databricks App to request the same detailed/deep-research-style response produced by the Genie UI?&lt;/LI&gt;&lt;LI&gt;For production Genie-powered Apps, what is the recommended pattern for presenting narrative + query results + visualizations while keeping Genie as the reasoning layer?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;My goal is &lt;STRONG&gt;not to execute or reconstruct Genie's business logic separately in the application&lt;/STRONG&gt;. I want the App to faithfully present the answer and evidence generated by Genie.&lt;/P&gt;&lt;P&gt;Any guidance on the expected API behavior or recommended implementation pattern would be appreciated.&lt;/P&gt;</description>
      <pubDate>Sun, 30 Aug 2026 22:35:05 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/how-can-a-databricks-app-render-the-same-detailed-response-as/m-p/166840#M2034</guid>
      <dc:creator>GauriBhogle</dc:creator>
      <dc:date>2026-08-30T22:35:05Z</dc:date>
    </item>
    <item>
      <title>Agent mode: will per-turn context reporting be added, or is there another way to read it?</title>
      <link>https://community.databricks.com/t5/generative-ai/agent-mode-will-per-turn-context-reporting-be-added-or-is-there/m-p/166728#M2032</link>
      <description>&lt;P&gt;Genie spaces are steered by a semantic layer: text instructions (e.g. "when the user says 'sales', always filter to region = 'EMEA'") and example question→SQL pairs.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;We read turn payloads programmatically — via the message endpoint behind the Genie UI (/api/2.0/data-rooms/{space}/conversations/{cid}/messages/{mid}), with the public conversation API as fallback (it's thinner and omits exactly the context below).&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Comparing the two modes:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Standard mode tells you what each turn used&lt;/STRONG&gt;. Every message payload records the instructions applied (&lt;STRONG&gt;progress_report.context_info.primitive_instructions&lt;/STRONG&gt;), the example SQL pairs it drew on (&lt;STRONG&gt;examples.example_questions&lt;/STRONG&gt;, with confidence scores), and the tables retrieval selected (relevant_tables). When an answer looks wrong, you can check whether the instruction fired before touching any SQL.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Agent mode&lt;/STRONG&gt; reports none of this. The payload carries only the research trail — sub-questions, research thoughts, queries, the final report. &lt;STRONG&gt;Nothing records which instructions or example SQL shaped the turn&lt;/STRONG&gt;. And this is the mode where it matters most: one deep-research turn can run 5+ SQL queries, so a missed instruction silently propagates across all of them.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Specifically, what we need:&lt;/STRONG&gt; a new output item type in the agent mode API's response stream (POST /api/2.0/genie/agents/{agent_id}/responses) carrying the per-turn context standard mode already reports: primitive_instructions (instructions applied), example_questions (example SQL used, with confidence), relevant_tables (tables selected).&lt;BR /&gt;&lt;BR /&gt;The space API doesn't close the gap. It exposes the configured instruction/example list — what could have steered a turn, not what did — and it's current-state only: no version history, so after an edit you can't reconstruct the config a past turn ran against. (If config versioning is planned, that would help here too.)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Questions:&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Will agent mode report per-turn context (instructions / example SQL used) the way standard mode does? If not, is it on the roadmap?&lt;/LI&gt;&lt;LI&gt;Is there another way to read it today — an API field, an event type in the stream, a debug option, or the UI?&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Aug 2026 18:22:01 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/agent-mode-will-per-turn-context-reporting-be-added-or-is-there/m-p/166728#M2032</guid>
      <dc:creator>ncastagnet_mc</dc:creator>
      <dc:date>2026-08-28T18:22:01Z</dc:date>
    </item>
    <item>
      <title>Custom Agent traces only showing basic input and output</title>
      <link>https://community.databricks.com/t5/generative-ai/custom-agent-traces-only-showing-basic-input-and-output/m-p/166346#M2028</link>
      <description>&lt;P&gt;I've been working with MLflow Agent Server deployments using the OpenAI Agents SDK hosted both locally and in Databricks Apps. Currently, tracing is instrumented with:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;set_trace_processors([])
mlflow.openai.autolog()&lt;/LI-CODE&gt;&lt;P&gt;Locally, everything works great and my traces show annotations for tool calls and include lots of rich telemetry:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="taniumalloy_0-1787599425876.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/30228i370801216972DD7D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="taniumalloy_0-1787599425876.png" alt="taniumalloy_0-1787599425876.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;However, when I migrate to Databricks apps and try to leveraged Databricks Experiments, I lose all the details. It just shows the basic input and output text:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="taniumalloy_1-1787599561475.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/30229i13AC45DCF69D7D3C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="taniumalloy_1-1787599561475.png" alt="taniumalloy_1-1787599561475.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I've tested with both LangChain and OpenAI Agents SDK apps and nothing has changed on the Databricks side.&lt;/P&gt;&lt;P&gt;Is there currently limited support for tracing custom agents? Or has anyone been able to get proper tracing going with custom agents?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Following the guide here:&amp;nbsp;&lt;A href="https://github.com/databricks/app-templates/blob/main/agent-openai-agents-sdk/agent_server/agent.py" target="_blank"&gt;https://github.com/databricks/app-templates/blob/main/agent-openai-agents-sdk/agent_server/agent.py&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Aug 2026 19:32:37 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/custom-agent-traces-only-showing-basic-input-and-output/m-p/166346#M2028</guid>
      <dc:creator>taniumalloy</dc:creator>
      <dc:date>2026-08-24T19:32:37Z</dc:date>
    </item>
    <item>
      <title>Azure Databricks Genie + Copilot Studio: MCP tools discovered and enabled, but Copilot never invokes</title>
      <link>https://community.databricks.com/t5/generative-ai/azure-databricks-genie-copilot-studio-mcp-tools-discovered-and/m-p/166342#M2027</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;Hi&lt;/SPAN&gt; &lt;SPAN class=""&gt;everyone,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;I'm&lt;/SPAN&gt; &lt;SPAN class=""&gt;trying&lt;/SPAN&gt; &lt;SPAN class=""&gt;to&lt;/SPAN&gt; &lt;SPAN class=""&gt;integrate&lt;/SPAN&gt; &lt;SPAN class=""&gt;an&lt;/SPAN&gt; &lt;SPAN class=""&gt;Azure&lt;/SPAN&gt; &lt;SPAN class=""&gt;Databricks&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;Agent&lt;/SPAN&gt; &lt;SPAN class=""&gt;with&lt;/SPAN&gt; &lt;SPAN class=""&gt;Microsoft&lt;/SPAN&gt; &lt;SPAN class=""&gt;Copilot&lt;/SPAN&gt; &lt;SPAN class=""&gt;Studio&lt;/SPAN&gt; &lt;SPAN class=""&gt;through&lt;/SPAN&gt; &lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;MCP&lt;/SPAN&gt; &lt;SPAN class=""&gt;integration,&lt;/SPAN&gt; &lt;SPAN class=""&gt;and&lt;/SPAN&gt; &lt;SPAN class=""&gt;I'm&lt;/SPAN&gt; &lt;SPAN class=""&gt;stuck&lt;/SPAN&gt; &lt;SPAN class=""&gt;in&lt;/SPAN&gt; &lt;SPAN class=""&gt;a&lt;/SPAN&gt; &lt;SPAN class=""&gt;situation&lt;/SPAN&gt; &lt;SPAN class=""&gt;where&lt;/SPAN&gt; &lt;SPAN class=""&gt;everything&lt;/SPAN&gt; &lt;SPAN class=""&gt;appears&lt;/SPAN&gt; &lt;SPAN class=""&gt;correctly&lt;/SPAN&gt; &lt;SPAN class=""&gt;configured,&lt;/SPAN&gt; &lt;SPAN class=""&gt;but&lt;/SPAN&gt; &lt;SPAN class=""&gt;Copilot&lt;/SPAN&gt; &lt;SPAN class=""&gt;never&lt;/SPAN&gt; &lt;SPAN class=""&gt;actually&lt;/SPAN&gt; &lt;SPAN class=""&gt;invokes&lt;/SPAN&gt; &lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;tools.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;What&lt;/SPAN&gt; &lt;SPAN class=""&gt;has&lt;/SPAN&gt; &lt;SPAN class=""&gt;already&lt;/SPAN&gt; &lt;SPAN class=""&gt;been&lt;/SPAN&gt; &lt;SPAN class=""&gt;validated:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;A&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;Agent&lt;/SPAN&gt; &lt;SPAN class=""&gt;called&lt;/SPAN&gt; &lt;SPAN class=""&gt;"PLANI&lt;/SPAN&gt; &lt;SPAN class=""&gt;GENIE"&lt;/SPAN&gt; &lt;SPAN class=""&gt;exists&lt;/SPAN&gt; &lt;SPAN class=""&gt;in&lt;/SPAN&gt; &lt;SPAN class=""&gt;Azure&lt;/SPAN&gt; &lt;SPAN class=""&gt;Databricks.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;The&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;Agent&lt;/SPAN&gt; &lt;SPAN class=""&gt;is&lt;/SPAN&gt; &lt;SPAN class=""&gt;active&lt;/SPAN&gt; &lt;SPAN class=""&gt;and&lt;/SPAN&gt; &lt;SPAN class=""&gt;has&lt;/SPAN&gt; &lt;SPAN class=""&gt;a&lt;/SPAN&gt; &lt;SPAN class=""&gt;valid&lt;/SPAN&gt; &lt;SPAN class=""&gt;Agent&lt;/SPAN&gt; &lt;SPAN class=""&gt;ID.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;The&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;Agent&lt;/SPAN&gt; &lt;SPAN class=""&gt;is&lt;/SPAN&gt; &lt;SPAN class=""&gt;attached&lt;/SPAN&gt; &lt;SPAN class=""&gt;to&lt;/SPAN&gt; &lt;SPAN class=""&gt;an&lt;/SPAN&gt; &lt;SPAN class=""&gt;active&lt;/SPAN&gt; &lt;SPAN class=""&gt;SQL&lt;/SPAN&gt; &lt;SPAN class=""&gt;Warehouse.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Under&lt;/SPAN&gt; &lt;SPAN class=""&gt;Unity&lt;/SPAN&gt; &lt;SPAN class=""&gt;AI&lt;/SPAN&gt; &lt;SPAN class=""&gt;Gateway&lt;/SPAN&gt; &lt;SPAN class=""&gt;→&lt;/SPAN&gt; &lt;SPAN class=""&gt;MCPs,&lt;/SPAN&gt; &lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;MCP&lt;/SPAN&gt; &lt;SPAN class=""&gt;appears&lt;/SPAN&gt; &lt;SPAN class=""&gt;as&lt;/SPAN&gt; &lt;SPAN class=""&gt;Active.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;The&lt;/SPAN&gt; &lt;SPAN class=""&gt;MCP&lt;/SPAN&gt; &lt;SPAN class=""&gt;type&lt;/SPAN&gt; &lt;SPAN class=""&gt;is&lt;/SPAN&gt; &lt;SPAN class=""&gt;"Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;Agent".&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;The&lt;/SPAN&gt; &lt;SPAN class=""&gt;MCP&lt;/SPAN&gt; &lt;SPAN class=""&gt;exposes&lt;/SPAN&gt; &lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;expected&lt;/SPAN&gt; &lt;SPAN class=""&gt;tools:&lt;/SPAN&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;query_space_&amp;lt;agent_id&amp;gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;poll_response_&amp;lt;agent_id&amp;gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Both&lt;/SPAN&gt; &lt;SPAN class=""&gt;tools&lt;/SPAN&gt; &lt;SPAN class=""&gt;are&lt;/SPAN&gt; &lt;SPAN class=""&gt;visible&lt;/SPAN&gt; &lt;SPAN class=""&gt;in&lt;/SPAN&gt; &lt;SPAN class=""&gt;Databricks.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN class=""&gt;On&lt;/SPAN&gt; &lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;Copilot&lt;/SPAN&gt; &lt;SPAN class=""&gt;Studio&lt;/SPAN&gt; &lt;SPAN class=""&gt;side:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;DIV&gt;The Azure Databricks connection was created successfully through Power Platform using OAuth authentication&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Connection&lt;/SPAN&gt; &lt;SPAN class=""&gt;status&lt;/SPAN&gt; &lt;SPAN class=""&gt;is&lt;/SPAN&gt; &lt;SPAN class=""&gt;healthy/connected.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;When&lt;/SPAN&gt; &lt;SPAN class=""&gt;adding&lt;/SPAN&gt; &lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;Azure&lt;/SPAN&gt; &lt;SPAN class=""&gt;Databricks&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;tool,&lt;/SPAN&gt; &lt;SPAN class=""&gt;Copilot&lt;/SPAN&gt; &lt;SPAN class=""&gt;correctly&lt;/SPAN&gt; &lt;SPAN class=""&gt;discovers&lt;/SPAN&gt; &lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;Space.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;The&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;Space&lt;/SPAN&gt; &lt;SPAN class=""&gt;selector&lt;/SPAN&gt; &lt;SPAN class=""&gt;appears&lt;/SPAN&gt; &lt;SPAN class=""&gt;and&lt;/SPAN&gt; &lt;SPAN class=""&gt;I&lt;/SPAN&gt; &lt;SPAN class=""&gt;can&lt;/SPAN&gt; &lt;SPAN class=""&gt;select&lt;/SPAN&gt; &lt;SPAN class=""&gt;"PLANI&lt;/SPAN&gt; &lt;SPAN class=""&gt;GENIE".&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;The&lt;/SPAN&gt; &lt;SPAN class=""&gt;tool&lt;/SPAN&gt; &lt;SPAN class=""&gt;configuration&lt;/SPAN&gt; &lt;SPAN class=""&gt;shows&lt;/SPAN&gt; &lt;SPAN class=""&gt;both:&lt;/SPAN&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;query_space_&amp;lt;agent_id&amp;gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;poll_response_&amp;lt;agent_id&amp;gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Both&lt;/SPAN&gt; &lt;SPAN class=""&gt;tools&lt;/SPAN&gt; &lt;SPAN class=""&gt;are&lt;/SPAN&gt; &lt;SPAN class=""&gt;enabled.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Authentication&lt;/SPAN&gt; &lt;SPAN class=""&gt;mode&lt;/SPAN&gt; &lt;SPAN class=""&gt;is&lt;/SPAN&gt; &lt;SPAN class=""&gt;set&lt;/SPAN&gt; &lt;SPAN class=""&gt;to&lt;/SPAN&gt; &lt;SPAN class=""&gt;User.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;The&lt;/SPAN&gt; &lt;SPAN class=""&gt;agent&lt;/SPAN&gt; &lt;SPAN class=""&gt;has&lt;/SPAN&gt; &lt;SPAN class=""&gt;been&lt;/SPAN&gt; &lt;SPAN class=""&gt;saved&lt;/SPAN&gt; &lt;SPAN class=""&gt;and&lt;/SPAN&gt; &lt;SPAN class=""&gt;published&lt;/SPAN&gt; &lt;SPAN class=""&gt;after&lt;/SPAN&gt; &lt;SPAN class=""&gt;every&lt;/SPAN&gt; &lt;SPAN class=""&gt;configuration&lt;/SPAN&gt; &lt;SPAN class=""&gt;change.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN class=""&gt;Agent&lt;/SPAN&gt; &lt;SPAN class=""&gt;model:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Claude&lt;/SPAN&gt; &lt;SPAN class=""&gt;Sonnet&lt;/SPAN&gt; &lt;SPAN class=""&gt;4.6&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN class=""&gt;Instructions&lt;/SPAN&gt; &lt;SPAN class=""&gt;are&lt;/SPAN&gt; &lt;SPAN class=""&gt;intentionally&lt;/SPAN&gt; &lt;SPAN class=""&gt;simple.&lt;/SPAN&gt; &lt;SPAN class=""&gt;The&lt;/SPAN&gt; &lt;SPAN class=""&gt;agent&lt;/SPAN&gt; &lt;SPAN class=""&gt;is&lt;/SPAN&gt; &lt;SPAN class=""&gt;instructed&lt;/SPAN&gt; &lt;SPAN class=""&gt;to&lt;/SPAN&gt; &lt;SPAN class=""&gt;use&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;for&lt;/SPAN&gt; &lt;SPAN class=""&gt;questions&lt;/SPAN&gt; &lt;SPAN class=""&gt;related&lt;/SPAN&gt; &lt;SPAN class=""&gt;to&lt;/SPAN&gt; &lt;SPAN class=""&gt;CMGs,&lt;/SPAN&gt; &lt;SPAN class=""&gt;generation,&lt;/SPAN&gt; &lt;SPAN class=""&gt;demand,&lt;/SPAN&gt; &lt;SPAN class=""&gt;policies,&lt;/SPAN&gt; &lt;SPAN class=""&gt;CAPEX,&lt;/SPAN&gt; &lt;SPAN class=""&gt;IFOR,&lt;/SPAN&gt; &lt;SPAN class=""&gt;tables&lt;/SPAN&gt; &lt;SPAN class=""&gt;and&lt;/SPAN&gt; &lt;SPAN class=""&gt;Databricks&lt;/SPAN&gt; &lt;SPAN class=""&gt;data,&lt;/SPAN&gt; &lt;SPAN class=""&gt;and&lt;/SPAN&gt; &lt;SPAN class=""&gt;to&lt;/SPAN&gt; &lt;SPAN class=""&gt;never&lt;/SPAN&gt; &lt;SPAN class=""&gt;answer&lt;/SPAN&gt; &lt;SPAN class=""&gt;from&lt;/SPAN&gt; &lt;SPAN class=""&gt;its&lt;/SPAN&gt; &lt;SPAN class=""&gt;own&lt;/SPAN&gt; &lt;SPAN class=""&gt;knowledge.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Expected&lt;/SPAN&gt; &lt;SPAN class=""&gt;behavior:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;If&lt;/SPAN&gt; &lt;SPAN class=""&gt;I&lt;/SPAN&gt; &lt;SPAN class=""&gt;ask&lt;/SPAN&gt; &lt;SPAN class=""&gt;something&lt;/SPAN&gt; &lt;SPAN class=""&gt;like:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;"What&lt;/SPAN&gt; &lt;SPAN class=""&gt;is&lt;/SPAN&gt; &lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;average&lt;/SPAN&gt; &lt;SPAN class=""&gt;CMG&lt;/SPAN&gt; &lt;SPAN class=""&gt;for&lt;/SPAN&gt; &lt;SPAN class=""&gt;busbar&lt;/SPAN&gt; &lt;SPAN class=""&gt;CrucEnc220?"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;I&lt;/SPAN&gt; &lt;SPAN class=""&gt;would&lt;/SPAN&gt; &lt;SPAN class=""&gt;expect&lt;/SPAN&gt; &lt;SPAN class=""&gt;Copilot&lt;/SPAN&gt; &lt;SPAN class=""&gt;to:&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Call&lt;/SPAN&gt; &lt;SPAN class=""&gt;query_space.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Poll&lt;/SPAN&gt; &lt;SPAN class=""&gt;using&lt;/SPAN&gt; &lt;SPAN class=""&gt;poll_response.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Return&lt;/SPAN&gt; &lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;response.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN class=""&gt;Actual&lt;/SPAN&gt; &lt;SPAN class=""&gt;behavior:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Instead&lt;/SPAN&gt; &lt;SPAN class=""&gt;of&lt;/SPAN&gt; &lt;SPAN class=""&gt;invoking&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie,&lt;/SPAN&gt; &lt;SPAN class=""&gt;Copilot&lt;/SPAN&gt; &lt;SPAN class=""&gt;responds&lt;/SPAN&gt; &lt;SPAN class=""&gt;with&lt;/SPAN&gt; &lt;SPAN class=""&gt;messages&lt;/SPAN&gt; &lt;SPAN class=""&gt;such&lt;/SPAN&gt; &lt;SPAN class=""&gt;as:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;"I&lt;/SPAN&gt; &lt;SPAN class=""&gt;don't&lt;/SPAN&gt; &lt;SPAN class=""&gt;have&lt;/SPAN&gt; &lt;SPAN class=""&gt;access&lt;/SPAN&gt; &lt;SPAN class=""&gt;to&lt;/SPAN&gt; &lt;SPAN class=""&gt;Azure&lt;/SPAN&gt; &lt;SPAN class=""&gt;Databricks&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;"I&lt;/SPAN&gt; &lt;SPAN class=""&gt;only&lt;/SPAN&gt; &lt;SPAN class=""&gt;have&lt;/SPAN&gt; &lt;SPAN class=""&gt;local&lt;/SPAN&gt; &lt;SPAN class=""&gt;tools&lt;/SPAN&gt; &lt;SPAN class=""&gt;such&lt;/SPAN&gt; &lt;SPAN class=""&gt;as&lt;/SPAN&gt; &lt;SPAN class=""&gt;bash,&lt;/SPAN&gt; &lt;SPAN class=""&gt;grep,&lt;/SPAN&gt; &lt;SPAN class=""&gt;file&lt;/SPAN&gt; &lt;SPAN class=""&gt;utilities,&lt;/SPAN&gt; &lt;SPAN class=""&gt;etc."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;"The&lt;/SPAN&gt; &lt;SPAN class=""&gt;MCP&lt;/SPAN&gt; &lt;SPAN class=""&gt;tools&lt;/SPAN&gt; &lt;SPAN class=""&gt;are&lt;/SPAN&gt; &lt;SPAN class=""&gt;not&lt;/SPAN&gt; &lt;SPAN class=""&gt;available&lt;/SPAN&gt; &lt;SPAN class=""&gt;in&lt;/SPAN&gt; &lt;SPAN class=""&gt;this&lt;/SPAN&gt; &lt;SPAN class=""&gt;environment."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;"I&lt;/SPAN&gt; &lt;SPAN class=""&gt;cannot&lt;/SPAN&gt; &lt;SPAN class=""&gt;access&lt;/SPAN&gt; &lt;SPAN class=""&gt;PLANI&lt;/SPAN&gt; &lt;SPAN class=""&gt;GENIE."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;What confuses &lt;SPAN class=""&gt;me&lt;/SPAN&gt; &lt;SPAN class=""&gt;is&lt;/SPAN&gt; &lt;SPAN class=""&gt;that&lt;/SPAN&gt; &lt;SPAN class=""&gt;Copilot&lt;/SPAN&gt; &lt;SPAN class=""&gt;clearly&lt;/SPAN&gt; &lt;SPAN class=""&gt;discovers:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;MCP,&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;Agent,&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;Space,&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;query_space,&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;poll_response,&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN class=""&gt;yet&lt;/SPAN&gt; &lt;SPAN class=""&gt;during&lt;/SPAN&gt; &lt;SPAN class=""&gt;execution&lt;/SPAN&gt; &lt;SPAN class=""&gt;it&lt;/SPAN&gt; &lt;SPAN class=""&gt;behaves&lt;/SPAN&gt; &lt;SPAN class=""&gt;as&lt;/SPAN&gt; &lt;SPAN class=""&gt;if&lt;/SPAN&gt; &lt;SPAN class=""&gt;none&lt;/SPAN&gt; &lt;SPAN class=""&gt;of&lt;/SPAN&gt; &lt;SPAN class=""&gt;them&lt;/SPAN&gt; &lt;SPAN class=""&gt;exist.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;At&lt;/SPAN&gt; &lt;SPAN class=""&gt;this&lt;/SPAN&gt; &lt;SPAN class=""&gt;point&lt;/SPAN&gt; &lt;SPAN class=""&gt;I&lt;/SPAN&gt; &lt;SPAN class=""&gt;have&lt;/SPAN&gt; &lt;SPAN class=""&gt;already&lt;/SPAN&gt; &lt;SPAN class=""&gt;verified:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;Agent&lt;/SPAN&gt; &lt;SPAN class=""&gt;exists&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;Agent&lt;/SPAN&gt; &lt;SPAN class=""&gt;active&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;Warehouse&lt;/SPAN&gt; &lt;SPAN class=""&gt;active&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;MCP&lt;/SPAN&gt; &lt;SPAN class=""&gt;active&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;MCP&lt;/SPAN&gt; &lt;SPAN class=""&gt;tools&lt;/SPAN&gt; &lt;SPAN class=""&gt;exposed&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;Azure&lt;/SPAN&gt; &lt;SPAN class=""&gt;Databricks&lt;/SPAN&gt; &lt;SPAN class=""&gt;connection&lt;/SPAN&gt; &lt;SPAN class=""&gt;healthy&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;Copilot&lt;/SPAN&gt; &lt;SPAN class=""&gt;discovers&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;Space&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;Copilot&lt;/SPAN&gt; &lt;SPAN class=""&gt;discovers&lt;/SPAN&gt; &lt;SPAN class=""&gt;query_space&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;Copilot&lt;/SPAN&gt; &lt;SPAN class=""&gt;discovers&lt;/SPAN&gt; &lt;SPAN class=""&gt;poll_response&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;query_space&lt;/SPAN&gt; &lt;SPAN class=""&gt;enabled&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;poll_response&lt;/SPAN&gt; &lt;SPAN class=""&gt;enabled&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;Agent&lt;/SPAN&gt; &lt;SPAN class=""&gt;published&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;My&lt;/SPAN&gt; &lt;SPAN class=""&gt;questions&lt;/SPAN&gt; &lt;SPAN class=""&gt;are:&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Is&lt;/SPAN&gt; &lt;SPAN class=""&gt;there&lt;/SPAN&gt; &lt;SPAN class=""&gt;any&lt;/SPAN&gt; &lt;SPAN class=""&gt;additional&lt;/SPAN&gt; &lt;SPAN class=""&gt;orchestration&lt;/SPAN&gt; &lt;SPAN class=""&gt;configuration&lt;/SPAN&gt; &lt;SPAN class=""&gt;beyond&lt;/SPAN&gt; &lt;SPAN class=""&gt;enabling&lt;/SPAN&gt; &lt;SPAN class=""&gt;query_space&lt;/SPAN&gt; &lt;SPAN class=""&gt;and&lt;/SPAN&gt; &lt;SPAN class=""&gt;poll_response?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Are&lt;/SPAN&gt; &lt;SPAN class=""&gt;there&lt;/SPAN&gt; &lt;SPAN class=""&gt;known&lt;/SPAN&gt; &lt;SPAN class=""&gt;issues&lt;/SPAN&gt; &lt;SPAN class=""&gt;where&lt;/SPAN&gt; &lt;SPAN class=""&gt;Copilot&lt;/SPAN&gt; &lt;SPAN class=""&gt;discovers&lt;/SPAN&gt; &lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;MCP&lt;/SPAN&gt; &lt;SPAN class=""&gt;tools&lt;/SPAN&gt; &lt;SPAN class=""&gt;but&lt;/SPAN&gt; &lt;SPAN class=""&gt;never&lt;/SPAN&gt; &lt;SPAN class=""&gt;actually&lt;/SPAN&gt; &lt;SPAN class=""&gt;invokes&lt;/SPAN&gt; &lt;SPAN class=""&gt;query_space?&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;SPAN class=""&gt;I&lt;/SPAN&gt; &lt;SPAN class=""&gt;do&lt;/SPAN&gt; &lt;SPAN class=""&gt;not&lt;/SPAN&gt; &lt;SPAN class=""&gt;have&lt;/SPAN&gt; &lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;AI&lt;/SPAN&gt; &lt;SPAN class=""&gt;Orchestration&lt;/SPAN&gt; &lt;SPAN class=""&gt;setting&lt;/SPAN&gt; &lt;SPAN class=""&gt;mentioned&lt;/SPAN&gt; &lt;SPAN class=""&gt;in&lt;/SPAN&gt; &lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;Databricks&lt;/SPAN&gt; &lt;SPAN class=""&gt;documentation.&lt;/SPAN&gt; &lt;SPAN class=""&gt;The&lt;/SPAN&gt; &lt;SPAN class=""&gt;Genie&lt;/SPAN&gt; &lt;SPAN class=""&gt;Agent&lt;/SPAN&gt; &lt;SPAN class=""&gt;and&lt;/SPAN&gt; &lt;SPAN class=""&gt;MCP&lt;/SPAN&gt; &lt;SPAN class=""&gt;tools&lt;/SPAN&gt; &lt;SPAN class=""&gt;are&lt;/SPAN&gt; &lt;SPAN class=""&gt;configured&lt;/SPAN&gt; &lt;SPAN class=""&gt;correctly,&lt;/SPAN&gt; &lt;SPAN class=""&gt;but&lt;/SPAN&gt; &lt;SPAN class=""&gt;the&lt;/SPAN&gt; &lt;SPAN class=""&gt;orchestration&lt;/SPAN&gt; &lt;SPAN class=""&gt;option&lt;/SPAN&gt; &lt;SPAN class=""&gt;is&lt;/SPAN&gt; &lt;SPAN class=""&gt;not&lt;/SPAN&gt; &lt;SPAN class=""&gt;present&lt;/SPAN&gt; &lt;SPAN class=""&gt;in&lt;/SPAN&gt; &lt;SPAN class=""&gt;my&lt;/SPAN&gt; &lt;SPAN class=""&gt;Copilot&lt;/SPAN&gt; &lt;SPAN class=""&gt;Studio&lt;/SPAN&gt; &lt;SPAN class=""&gt;environment.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN class=""&gt;Any&lt;/SPAN&gt; &lt;SPAN class=""&gt;guidance&lt;/SPAN&gt; &lt;SPAN class=""&gt;or&lt;/SPAN&gt; &lt;SPAN class=""&gt;working&lt;/SPAN&gt; &lt;SPAN class=""&gt;examples&lt;/SPAN&gt; &lt;SPAN class=""&gt;would&lt;/SPAN&gt; &lt;SPAN class=""&gt;be&lt;/SPAN&gt; &lt;SPAN class=""&gt;greatly&lt;/SPAN&gt; &lt;SPAN class=""&gt;appreciated.&lt;/SPAN&gt; &lt;SPAN class=""&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Aug 2026 18:38:35 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/azure-databricks-genie-copilot-studio-mcp-tools-discovered-and/m-p/166342#M2027</guid>
      <dc:creator>rquezada</dc:creator>
      <dc:date>2026-08-24T18:38:35Z</dc:date>
    </item>
    <item>
      <title>Databricks-hosted Foundation Model APIs blocked by workspace rate limit of 0</title>
      <link>https://community.databricks.com/t5/generative-ai/databricks-hosted-foundation-model-apis-blocked-by-workspace/m-p/166270#M2025</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;My Databricks-hosted Foundation Model endpoints appear READY, but every runtime invocation is blocked by a workspace-level quota.&lt;/P&gt;&lt;P&gt;Workspace details:&lt;BR /&gt;- Workspace ID: 7474647458172567&lt;BR /&gt;- Workspace URL: &lt;A href="https://dbc-731cb41b-741e.cloud.databricks.com" target="_blank"&gt;https://dbc-731cb41b-741e.cloud.databricks.com&lt;/A&gt;&lt;BR /&gt;- Region: us-west-2&lt;BR /&gt;- Serverless compute: enabled&lt;/P&gt;&lt;P&gt;Reproduction:&lt;BR /&gt;1. GET /api/2.0/serving-endpoints/databricks-claude-sonnet-5 returns HTTP 200.&lt;BR /&gt;2. Endpoint state is READY and config_update is NOT_UPDATING.&lt;BR /&gt;3. POST /serving-endpoints/databricks-claude-sonnet-5/invocations returns HTTP 403:&lt;BR /&gt;PERMISSION_DENIED: The endpoint is temporarily disabled due to a Databricks-set rate limit of 0.&lt;/P&gt;&lt;P&gt;The same workspace-level rate-limit error has also affected other Databricks-hosted foundation models, so this does not appear to be a missing endpoint or Model Service configuration issue.&lt;/P&gt;&lt;P&gt;Billing has been upgraded from the trial flow and a payment method is present. Partner-powered AI features are enabled. Creating another Model Service does not resolve the problem.&lt;/P&gt;&lt;P&gt;Could a Databricks community engineer please clarify:&lt;BR /&gt;1. How can an individual pay-as-you-go workspace receive a non-zero Foundation Model API rate limit?&lt;BR /&gt;2. Does the workspace/account need a manual entitlement or verification-tier update?&lt;BR /&gt;3. Which billing or account team can remove the Databricks-set rate limit of 0 if standard support is unavailable?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Aug 2026 05:15:45 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/databricks-hosted-foundation-model-apis-blocked-by-workspace/m-p/166270#M2025</guid>
      <dc:creator>APIUser4827</dc:creator>
      <dc:date>2026-08-24T05:15:45Z</dc:date>
    </item>
    <item>
      <title>Endpoint Error</title>
      <link>https://community.databricks.com/t5/generative-ai/endpoint-error/m-p/166128#M2018</link>
      <description>&lt;P class=""&gt;I have a GCP Databricks account on the Enterprise plan with GCP Marketplace configured as the default payment method. Partner-powered AI features are enabled, and we enabled the Supervisor API Beta preview. Unity Catalog v3 model services are visible under system.ai, but calls to system.ai.gpt-5-6-sol and system.ai.claude-sonnet-5 fail with PERMISSION_DENIED: The endpoint is temporarily disabled due to a Databricks-set rate limit of 0. Could you confirm why the account has a Databricks-set zero rate limit for these hosted models and whether it can be enabled?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2026 11:07:09 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/endpoint-error/m-p/166128#M2018</guid>
      <dc:creator>aryan_s1977</dc:creator>
      <dc:date>2026-08-21T11:07:09Z</dc:date>
    </item>
    <item>
      <title>Questions about "Store OpenTelemetry traces in Unity Catalog"</title>
      <link>https://community.databricks.com/t5/generative-ai/questions-about-quot-store-opentelemetry-traces-in-unity-catalog/m-p/166096#M2015</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm trying to use the&amp;nbsp;OpenTelemetry traces in Unity Catalog&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/mlflow3/genai/tracing/trace-unity-catalog" target="_blank" rel="noopener"&gt;https://docs.databricks.com/aws/en/mlflow3/genai/tracing/trace-unity-catalog&lt;/A&gt;&lt;/P&gt;&lt;P&gt;But I'm having trouble to understand the behavior.&lt;/P&gt;&lt;P&gt;First, I can't find any data in the following two tables.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&amp;lt;table_prefix&amp;gt;_otel_logs&lt;/LI&gt;&lt;LI&gt;&amp;lt;table_prefix&amp;gt;_otel_metrics&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Second, I can't understand the differences of the&amp;nbsp;Archive traces to a Delta table&amp;nbsp;&lt;A href="https://docs.databricks.com/gcp/en/mlflow3/genai/eval-monitor/archive-traces" target="_blank" rel="noopener"&gt;https://docs.databricks.com/gcp/en/mlflow3/genai/eval-monitor/archive-traces&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;Which one should we adopt going forward?&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2026 23:58:33 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/questions-about-quot-store-opentelemetry-traces-in-unity-catalog/m-p/166096#M2015</guid>
      <dc:creator>Yuki</dc:creator>
      <dc:date>2026-08-20T23:58:33Z</dc:date>
    </item>
    <item>
      <title>Bedrock and Genie</title>
      <link>https://community.databricks.com/t5/generative-ai/bedrock-and-genie/m-p/166000#M2014</link>
      <description>&lt;P&gt;Genie experts&lt;/P&gt;&lt;P&gt;We are planning to utilize the AWS Bedrock agent to work with Genie One and invoke endpoints within Databricks. Our setup will involve multiple Databricks&amp;nbsp; accounts that will be integrated with the Bedrock agent. I would appreciate any guidance on best practices, as well as lessons learned from similar implementations. Thank you for your assistance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2026 17:07:55 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/bedrock-and-genie/m-p/166000#M2014</guid>
      <dc:creator>data_architect2</dc:creator>
      <dc:date>2026-08-19T17:07:55Z</dc:date>
    </item>
    <item>
      <title>Genie Agent Volume Attachment (Beta) Docs mentions multiple formats but images aren't supported</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-agent-volume-attachment-beta-docs-mentions-multiple/m-p/165871#M2008</link>
      <description>&lt;DIV&gt;&lt;P&gt;Hi Databricks Team,&lt;/P&gt;&lt;P&gt;I'm testing the &lt;STRONG&gt;Genie Agent volume attachment feature (Beta)&lt;/STRONG&gt; and have a question regarding supported file formats.&lt;/P&gt;&lt;P&gt;According to the documentation, Genie Agents can be attached to a Volume containing various file formats. The supported formats appear to include documents and other file types that can be used as knowledge sources.&lt;/P&gt;&lt;P&gt;However, when I try to attach a Volume that contains image files (for example, .png or .jpg), the Databricks workspace UI indicates that &lt;STRONG&gt;images are not supported&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Could someone help clarify the following?&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Are image formats (.png, .jpg, .jpeg, etc.) officially supported for Genie Agent Volume attachments in the current Beta release?&lt;/LI&gt;&lt;LI&gt;If image support is documented, is there an additional configuration or prerequisite required to enable it?&lt;/LI&gt;&lt;LI&gt;Is the workspace UI limitation expected behavior, or could this be a bug/inconsistency between the documentation and the current implementation?&lt;/LI&gt;&lt;LI&gt;If images are not yet supported, is there an updated list of the currently supported file formats for Genie Agent knowledge sources?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;For reference, I am referring to the documentation that describes supported file formats for Volume attachments, but the behavior I'm seeing in the workspace seems to differ.&lt;/P&gt;&lt;P&gt;Any clarification would be greatly appreciated. Thanks!&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 18 Aug 2026 06:38:39 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-agent-volume-attachment-beta-docs-mentions-multiple/m-p/165871#M2008</guid>
      <dc:creator>Santhosh_23</dc:creator>
      <dc:date>2026-08-18T06:38:39Z</dc:date>
    </item>
  </channel>
</rss>

