<?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>All Generative AI posts</title>
    <link>https://community.databricks.com/t5/generative-ai/bd-p/GenAI-Insight-Hub</link>
    <description>All Generative AI posts</description>
    <pubDate>Tue, 30 Jun 2026 05:51:13 GMT</pubDate>
    <dc:creator>GenAI-Insight-Hub</dc:creator>
    <dc:date>2026-06-30T05:51:13Z</dc:date>
    <item>
      <title>Re: How to retrieve Genie's narrative text summary (final_summary) via API?</title>
      <link>https://community.databricks.com/t5/generative-ai/how-to-retrieve-genie-s-narrative-text-summary-final-summary-via/m-p/160869#M1903</link>
      <description>&lt;P&gt;I understand that this is a fast moving world right now, but the limitations of the Genie API are a constant source of frustration for my company.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I find it strange that your response says "as there appears to be a good amount of demand for it."&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;You just need to assume that any feature released in the UI is also in-demand for the API. Ideally the features should be released at the same time.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2026 14:54:23 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/how-to-retrieve-genie-s-narrative-text-summary-final-summary-via/m-p/160869#M1903</guid>
      <dc:creator>no2</dc:creator>
      <dc:date>2026-06-29T14:54:23Z</dc:date>
    </item>
    <item>
      <title>MCP on Databricks</title>
      <link>https://community.databricks.com/t5/generative-ai/mcp-on-databricks/m-p/160791#M1901</link>
      <description>&lt;P&gt;Here’s What Nobody Tells You.&lt;BR /&gt;A hands-on look at Genie MCP and DBSQL MCP — what works, what doesn’t, and when to skip MCP entirely.&lt;BR /&gt;Let me start with something most MCP content skips. MCP servers don’t just expose tools. They expose three things — tools, prompts, and resources. If you only think about tools, you’ll miss why some things break in ways that aren’t obvious.&lt;BR /&gt;I validated this on two Databricks MCP servers: Genie and DBSQL. Here’s what I actually found.&lt;BR /&gt;Genie MCP — The Idea Is Right. The Execution Needs Time.&lt;BR /&gt;I went in wanting one thing: route queries across multiple Genie spaces without writing routing code for each one. That part does work. But everything around it is still rough.&lt;BR /&gt;Query Space&lt;BR /&gt;Genie MCP exposes descriptions of your Genie spaces as resources so the LLM can decide which space to query. In theory, smart. In practice, the descriptions are too generic. If you have three Genie spaces and their descriptions are all high-level overviews, the model doesn’t have enough signal to route correctly. You get misrouting or arbitrary selection. This will improve as the feature matures — but right now, you need to write much more specific descriptions manually to make routing reliable.&lt;BR /&gt;Poll Responses&lt;BR /&gt;Genie is async. You fire a query, get a conversation ID, then poll until the response is ready. The MCP server exposes this flow, but the polling configuration is still on you. You still need retry logic, timeout handling, error cases. MCP wraps the API call — it doesn’t solve the async complexity underneath.&lt;BR /&gt;Statelessness — This Is the Real Gap&lt;BR /&gt;Every Genie MCP call starts a new session. No state carried across tool invocations. If your agent needs to follow up based on a previous answer, that context is gone. For any conversational agent, this is a hard limitation. The direct Genie Conversation API handles this better because you manage the conversation ID yourself — more code, but you own the state.&lt;/P&gt;&lt;P&gt;Area:What’s missing today&lt;/P&gt;&lt;P&gt;Query Space :Descriptions too generic for reliable LLM routing&lt;/P&gt;&lt;P&gt;Poll Responses :Polling still needs to be configured manually — MCP doesn’t abstract that away&lt;/P&gt;&lt;P&gt;Statelessness Each call starts a new session — no conversation continuity across turns&lt;/P&gt;&lt;P&gt;Best workaround Custom MCP server wrapping the Genie API — routing benefits, full control over state and polling&lt;/P&gt;&lt;P&gt;Where Genie MCP Actually Wins&lt;/P&gt;&lt;P&gt;Multiple Genie spaces. If you’re orchestrating across three or four spaces, the multi-server MCP pattern lets the LLM route from server config. Writing that same thing over raw API means a tool function per space, explicit routing conditionals, and ongoing maintenance. MCP removes that layer.&lt;/P&gt;&lt;P&gt;There’s also a third option worth considering: a custom MCP server wrapping the Genie API. You get the routing benefit of MCP without giving up control over state and polling. That’s the direction I’ve been moving toward.&lt;/P&gt;&lt;P&gt;DBSQL MCP — This One’s Ready&lt;/P&gt;&lt;P&gt;Different story here. DBSQL MCP feels production-ready.&lt;/P&gt;&lt;P&gt;Three tools: execute_sql, execute_sql_read_only, and poll_sql_result. The read-only tool is what I’d default to for agentic workflows — full query capability with no risk of an agent running an accidental write.&lt;/P&gt;&lt;P&gt;Tool Use it when&lt;/P&gt;&lt;P&gt;execute_sql: You need full read/write in a controlled pipeline&lt;/P&gt;&lt;P&gt;execute_sql_read_only :Default for agents, VS Code/Copilot integrations, anything exploratory&lt;/P&gt;&lt;P&gt;poll_sql_result :Query is async or long-running — fetch results after completion&lt;/P&gt;&lt;P&gt;Unity Catalog Integration — This Is What Makes It Work&lt;/P&gt;&lt;P&gt;The MCP server respects your UC permissions exactly. You see the tables you have access to. Masked columns stay masked. Encryption policies hold. It doesn’t give the LLM more access than you’d have in the Databricks UI yourself. That governance consistency matters when you’re connecting external tools to your lakehouse.&lt;/P&gt;&lt;P&gt;Authentication is PAT or SSO. The server’s access boundary is your workspace access. Nothing more.&lt;/P&gt;&lt;P&gt;Practically, this means you can query your lakehouse directly from VS Code or GitHub Copilot while writing code, feed governed table data into an agentic reasoning loop, or let external tools run SQL without needing direct cluster access — all while staying within whatever access policies you’ve already set in Unity Catalog.&lt;/P&gt;&lt;P&gt;The Bottom Line&lt;/P&gt;&lt;P&gt;DBSQL MCP is worth using today. Genie MCP is worth watching, but statelessness, routing quality, and the polling gap mean the direct API is still the better call if you need reliability and control.&lt;/P&gt;&lt;P&gt;The exception is multi-space routing. If that’s your main problem, Genie MCP saves real work. And if you need both — routing and control — build a custom MCP layer over the API.&lt;/P&gt;&lt;P&gt;The ecosystem is moving fast. Some of what I’ve described here may already look different by the time you read this. But this is what I found when I actually&amp;nbsp;tested&amp;nbsp;it.&lt;/P&gt;&lt;P&gt;Test it yourself. Don’t build on assumptions.&lt;/P&gt;&lt;P&gt;#MCP #Databricks #AIEngineering #AgenticAI #DataEngineering #LangGraph&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jun 2026 16:51:18 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/mcp-on-databricks/m-p/160791#M1901</guid>
      <dc:creator>sagarpgowda7777</dc:creator>
      <dc:date>2026-06-28T16:51:18Z</dc:date>
    </item>
    <item>
      <title>Genie not able to list MCP prompts</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-not-able-to-list-mcp-prompts/m-p/160673#M1900</link>
      <description>&lt;P&gt;Hi community,&lt;/P&gt;&lt;P&gt;I'm building a custom MCP proxy server (hosted as a Databricks App) that forwards requests to an upstream MCP server. The upstream server exposes both **tools** and **prompts** as per the MCP specification.&lt;/P&gt;&lt;P&gt;I can confirm that Genie Code successfully discovers and calls tools via `tools/list` and `tools/call`. However, I'm unable to find any documentation or confirmation on whether Genie Code also supports the MCP **prompts** primitive — specifically:&lt;/P&gt;&lt;P&gt;- Does Genie Code ever call `prompts/list` on a connected MCP server?&lt;BR /&gt;- Does Genie Code ever call `prompts/get` to invoke a specific prompt?&lt;BR /&gt;- If prompts are supported, how does Genie Code surface or use them in Agent mode?&lt;/P&gt;&lt;P&gt;The [MCP documentation on Databricks](&lt;A href="https://docs.databricks.com/aws/en/generative-ai/mcp/" target="_blank"&gt;https://docs.databricks.com/aws/en/generative-ai/mcp/&lt;/A&gt;) describes MCP as a standard for *"tools, resources, prompts, and other contextual information"*, but all concrete examples and limits (e.g. the 20-item cap) only reference tools. There is no explicit mention of prompt discovery or invocation in Genie Code.&lt;/P&gt;&lt;P&gt;**My setup:**&lt;BR /&gt;- Custom MCP server deployed as a Databricks App&lt;BR /&gt;- FastMCP with `stateless_http=True`&lt;BR /&gt;- Server correctly responds to `prompts/list` and `prompts/get` (verified via MCP Inspector)&lt;BR /&gt;- Genie Code connects successfully and uses tools, but no evidence of `prompts/list` being called&lt;/P&gt;&lt;P&gt;Has anyone confirmed whether MCP prompts are supported, planned, or intentionally out of scope for Genie Code? Any official reference or firsthand experience would be appreciated.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2026 13:29:33 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-not-able-to-list-mcp-prompts/m-p/160673#M1900</guid>
      <dc:creator>sandyveeru</dc:creator>
      <dc:date>2026-06-26T13:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: Agentbricks Knowledge Assistant - Facing Issue with Agent Creation and Source Visibility</title>
      <link>https://community.databricks.com/t5/generative-ai/agentbricks-knowledge-assistant-facing-issue-with-agent-creation/m-p/160634#M1899</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/216690"&gt;@Ashwin_DSA&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;I have already tried the provided solution, but I am still facing the error. I have also raised a support request with Azure Databricks; however, it has been going in circles for the past month without resolution.&lt;/DIV&gt;</description>
      <pubDate>Fri, 26 Jun 2026 09:45:18 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/agentbricks-knowledge-assistant-facing-issue-with-agent-creation/m-p/160634#M1899</guid>
      <dc:creator>Ajay-Pandey</dc:creator>
      <dc:date>2026-06-26T09:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: AI Extract is disabled?</title>
      <link>https://community.databricks.com/t5/generative-ai/ai-extract-is-disabled/m-p/160581#M1898</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/195849"&gt;@suranga&lt;/a&gt;,&lt;/P&gt;
&lt;P class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea" data-pm-slice="1 1 []"&gt;I have checked this internally. What you're seeing is most likely a workspace availability issue rather than a problem with JPEG files in a Unity Catalog Volume. The public &lt;A href="https://learn.microsoft.com/en-us/azure/databricks/generative-ai/agent-bricks/info-extraction" rel="noopener noreferrer nofollow" target="_blank"&gt;Information Extraction documentation&lt;/A&gt; lists a few workspace prerequisites for the UI, including serverless compute, Unity Catalog, access to a serverless usage policy with a nonzero budget, and region support for the feature.&lt;/P&gt;
&lt;P&gt;On the file side, JPEGs in a Volume are a supported path. The public &lt;A href="https://learn.microsoft.com/en-us/azure/databricks/sql/language-manual/functions/ai_parse_document" rel="noopener noreferrer nofollow" target="_blank"&gt;ai_parse_document documentation&lt;/A&gt; explicitly says files in a Unity Catalog Volume can be read with the binaryFile reader, and it lists JPG/JPEG as supported formats.&lt;/P&gt;
&lt;P class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;One subtle point is that ai_extract being GA does not automatically mean the no-code Information Extraction experience is available in every Azure workspace and region. The Azure release notes say ai_extract is GA, but the Information Extraction docs still note limited regional availability and point to the feature availability matrix.&lt;/P&gt;
&lt;P&gt;It’s also worth noting that AI Extract does not take raw files directly. For document and image workflows, the public docs show it being used downstream of ai_parse_document, so the expected pattern is to parse first, then extract.&lt;/P&gt;
&lt;P class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;So the checks I'd suggest are:&lt;/P&gt;
&lt;UL&gt;
&lt;LI class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Confirm the workspace region against the public &lt;A href="https://learn.microsoft.com/en-us/azure/databricks/resources/feature-region-support" rel="noopener noreferrer nofollow" target="_blank"&gt;feature availability page&lt;/A&gt;&lt;/LI&gt;
&lt;LI class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Confirm serverless compute is enabled&lt;/LI&gt;
&lt;LI class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Confirm Unity Catalog is enabled&lt;/LI&gt;
&lt;LI class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Confirm the workspace has access to a serverless usage policy with a nonzero budget&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;If those prerequisites are already satisfied and the UI still shows "contact sales," I'd treat that as a workspace access or availability issue for the Information Extraction UI, not as a JPEG-in-Volume support issue.&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2026 19:28:19 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/ai-extract-is-disabled/m-p/160581#M1898</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-06-25T19:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing Document Presented in Demo in Get Started with AI Agents on Databricks Course</title>
      <link>https://community.databricks.com/t5/generative-ai/accessing-document-presented-in-demo-in-get-started-with-ai/m-p/160569#M1897</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Ashwin,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you for the follow up.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I have a hard time to find the content tab and will submit a ticket.&lt;/P&gt;&lt;P&gt;Fransis&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2026 19:04:55 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/accessing-document-presented-in-demo-in-get-started-with-ai/m-p/160569#M1897</guid>
      <dc:creator>3R1</dc:creator>
      <dc:date>2026-06-25T19:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing Document Presented in Demo in Get Started with AI Agents on Databricks Course</title>
      <link>https://community.databricks.com/t5/generative-ai/accessing-document-presented-in-demo-in-get-started-with-ai/m-p/160556#M1896</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/230323"&gt;@3R1&lt;/a&gt;,&lt;/P&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thank you for flagging this!&lt;/DIV&gt;
&lt;DIV&gt;&lt;BR aria-hidden="true" /&gt;The document shown in the Demo section of the Get Started with AI Agents on Databricks course is a Databricks Notebook. You should be able to access it by following the steps below:&lt;/DIV&gt;
&lt;UL&gt;
&lt;LI&gt;Log in to Databricks Academy&amp;nbsp;at &lt;SPAN draggable="true"&gt;&lt;A href="http://customer-academy.databricks.com" rel="noopener noreferrer" target="_blank"&gt;customer-academy.databricks.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;Navigate to the course session&lt;/LI&gt;
&lt;LI&gt;Click the Content tab&lt;/LI&gt;
&lt;LI&gt;Look for the&amp;nbsp;Demo - Get Started with AI Agent on Databricks&amp;nbsp;notebook link&lt;/LI&gt;
&lt;/UL&gt;
&lt;DIV&gt;If the link is not visible in the Content tab, please check the Resources section within the course module.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;If you are already in the course and still cannot locate the document, please raise a &lt;SPAN draggable="true"&gt;&lt;A href="https://help.databricks.com/s/contact-us?ReqType=training" rel="noopener noreferrer" target="_blank"&gt;Training Support ticket &lt;/A&gt;&lt;/SPAN&gt;and the training team will help with this.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG style="color: #ff6600; font-size: small; font-family: inherit;"&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 25 Jun 2026 18:49:55 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/accessing-document-presented-in-demo-in-get-started-with-ai/m-p/160556#M1896</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-06-25T18:49:55Z</dc:date>
    </item>
    <item>
      <title>AI Extract is disabled?</title>
      <link>https://community.databricks.com/t5/generative-ai/ai-extract-is-disabled/m-p/160544#M1895</link>
      <description>&lt;P&gt;Why is AI Extract is not loading up? im on azure databricks and i have JPEG images in a Databricks Volume. Its on GA but why is it asking to contact sales for this?&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2026 16:09:18 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/ai-extract-is-disabled/m-p/160544#M1895</guid>
      <dc:creator>suranga</dc:creator>
      <dc:date>2026-06-25T16:09:18Z</dc:date>
    </item>
    <item>
      <title>Accessing Document Presented in Demo in Get Started with AI Agents on Databricks Course</title>
      <link>https://community.databricks.com/t5/generative-ai/accessing-document-presented-in-demo-in-get-started-with-ai/m-p/160537#M1894</link>
      <description>&lt;P&gt;I'm taking&amp;nbsp;Get Started with AI Agents on Databricks Course and cannot find the document that is shown in the Demo section.&lt;/P&gt;&lt;P&gt;I wonder whether the Demo is for a show only or the learner can follow along. If the latter, where can I find it?&lt;/P&gt;&lt;P&gt;Course Link: &lt;A href="https://customer-academy.databricks.com/learn/courses/4464/get-started-with-ai-agents-on-databricks?hash=da4cd4915b4bbd06eed1c89022d28c0bb70ac589&amp;amp;generated_by=1000317" target="_blank"&gt;https://customer-academy.databricks.com/learn/courses/4464/get-started-with-ai-agents-on-databricks?hash=da4cd4915b4bbd06eed1c89022d28c0bb70ac589&amp;amp;generated_by=1000317&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Fransis&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2026 14:54:12 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/accessing-document-presented-in-demo-in-get-started-with-ai/m-p/160537#M1894</guid>
      <dc:creator>3R1</dc:creator>
      <dc:date>2026-06-25T14:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: Agentbricks Knowledge Assistant - Facing Issue with Agent Creation and Source Visibility</title>
      <link>https://community.databricks.com/t5/generative-ai/agentbricks-knowledge-assistant-facing-issue-with-agent-creation/m-p/160509#M1893</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/71565"&gt;@Ajay-Pandey&lt;/a&gt;,&lt;/P&gt;
&lt;P class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea" data-pm-slice="1 1 []"&gt;From the snapshots, I would treat this as a possible UI/control-plane issue, especially if the source data is still visible through the API but not in the Knowledge Assistant UI.&lt;/P&gt;
&lt;P class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;A few things I would suggest checking first:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Confirm the workspace meets the basic Knowledge Assistant requirements... such as ... Serverless compute, Unity Catalog, Model Serving access, a nonzero serverless usage policy budget, and a supported region (the public docs list these under Knowledge Assistant requirements). &lt;A href="https://docs.databricks.com/aws/en/generative-ai/agent-bricks/knowledge-assistant" rel="noopener noreferrer nofollow" target="_blank"&gt;Docs&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Double-check the source format and file limits. For volume-based sources, the supported file types are txt, pdf, md, ppt/pptx, and doc/docx. The docs also note that files larger than 50 MB are skipped, and that PDF/DOC/DOCX/PPT/PPTX files with more than 500 pages are skipped as well. &lt;A href="https://docs.databricks.com/aws/en/generative-ai/agent-bricks/knowledge-assistant" rel="noopener noreferrer nofollow" target="_blank"&gt;Docs&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;If the source is an AI Search index instead of files, verify that the index uses a supported embedding model. The current public docs list databricks-gte-large-en, databricks-bge-large-en, and databricks-qwen3-embedding-0-6b. &lt;A href="https://docs.databricks.com/aws/en/generative-ai/agent-bricks/knowledge-assistant" rel="noopener noreferrer nofollow" target="_blank"&gt;Docs&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;If this is a file-based source, try a manual Sync. The docs mention that file-based knowledge sources need to be synced after updates, while index-based sources update automatically. &lt;A href="https://docs.databricks.com/aws/en/generative-ai/agent-bricks/knowledge-assistant" rel="noopener noreferrer nofollow" target="_blank"&gt;Docs&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Give the agent enough time if it was recently created or updated. The public docs note that agent creation and source sync can take up to a few hours, and once the agent is ready, the right-side panel should display the synced knowledge sources. &lt;A href="https://docs.databricks.com/aws/en/generative-ai/agent-bricks/knowledge-assistant" rel="noopener noreferrer nofollow" target="_blank"&gt;Docs&lt;/A&gt;&lt;/LI&gt;
&lt;LI class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Test the agent from the Build tab or from Playground and see whether it returns citations at all. The docs also mention using "View sources" to inspect the references the assistant is citing. &lt;A href="https://docs.databricks.com/aws/en/generative-ai/agent-bricks/knowledge-assistant" rel="noopener noreferrer nofollow" target="_blank"&gt;Docs&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;If the API still returns the Knowledge Assistant and its knowledge sources, but the UI shows an empty Sources pane or displays "Could not retrieve the agent," I’d recommend opening a Databricks support case. That usually points more to a mismatch between the backend and the UI than to unsupported source files.&lt;/P&gt;
&lt;P class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;For the support ticket, it would help to include:&lt;/P&gt;
&lt;UL&gt;
&lt;LI class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Workspace URL, cloud, and region&lt;/LI&gt;
&lt;LI class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;The Knowledge Assistant name and ID if available&lt;/LI&gt;
&lt;LI class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;The exact error text&lt;/LI&gt;
&lt;LI class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Screenshots of the empty Sources UI and the retrieval error&lt;/LI&gt;
&lt;LI class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Whether the problem affects only one assistant or also newly created assistants&lt;/LI&gt;
&lt;LI class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;The source type being used (volume, table, or AI Search index)&lt;/LI&gt;
&lt;LI class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Sample file types and approximate file sizes/page counts&lt;/LI&gt;
&lt;LI class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Whether manual Sync was attempted&lt;/LI&gt;
&lt;LI class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;API output from the Knowledge Assistants endpoints, especially the assistant state and the list of knowledge sources&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;The public API reference for Knowledge Assistants is here if you want to compare UI behaviour with backend state: &lt;A href="https://docs.databricks.com/api/workspace/knowledgeassistants" rel="noopener noreferrer nofollow" target="_blank"&gt;API reference&lt;/A&gt;&lt;/P&gt;
&lt;P class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Hope this helps.&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2026 10:41:48 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/agentbricks-knowledge-assistant-facing-issue-with-agent-creation/m-p/160509#M1893</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-06-25T10:41:48Z</dc:date>
    </item>
    <item>
      <title>Agentbricks Knowledge Assistant - Facing Issue with Agent Creation and Source Visibility</title>
      <link>https://community.databricks.com/t5/generative-ai/agentbricks-knowledge-assistant-facing-issue-with-agent-creation/m-p/160478#M1891</link>
      <description>&lt;DIV&gt;&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;I am facing an issue while creating a Knowledge Assistant in the Agent section. It was working fine earlier, and I had uploaded multiple PDF files (70K). However, it has now started behaving unexpectedly.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I am not able to see any source data in the UI, although it is visible via the API.&lt;/LI&gt;&lt;LI&gt;The agent is also not returning answers based on the source data.&lt;/LI&gt;&lt;LI&gt;When I try to create a new agent, I receive the following error:&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;"&lt;EM&gt;Could not retrieve the agent.&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;There was an error retrieving the agent. If the problem persists, please contact support.&lt;/EM&gt;"&lt;/P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AjayPandey_0-1782362411750.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/28268i13B9C64D7DC4628A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AjayPandey_0-1782362411750.png" alt="AjayPandey_0-1782362411750.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AjayPandey_1-1782362453412.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/28269i5ECA765F1C89055D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AjayPandey_1-1782362453412.png" alt="AjayPandey_1-1782362453412.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AjayPandey_2-1782362563886.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/28270i18609195DFA9124D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AjayPandey_2-1782362563886.png" alt="AjayPandey_2-1782362563886.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 25 Jun 2026 04:43:49 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/agentbricks-knowledge-assistant-facing-issue-with-agent-creation/m-p/160478#M1891</guid>
      <dc:creator>Ajay-Pandey</dc:creator>
      <dc:date>2026-06-25T04:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: Genie space: Delta Tables or Metric View</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-space-delta-tables-or-metric-view/m-p/160312#M1889</link>
      <description>&lt;P&gt;Adding both the raw Delta table and the Metric View generally causes confusions to the Space. Genie relies entirely on the schemas, descriptions and metadata you provide to translate queries into optimized SQL. If you expose both objects containing the same underlying data it introduces evere semantic ambiguities (2 path dilemma) where Genie has to guess whether to write an on the run un-governed calculation against the raw columns or leverage the defined semantic logic in metric view. It can drastically increase overhead and heavily opens the door for errors and inefficiencies.&lt;/P&gt;&lt;P&gt;You can hide the raw and silver layer tables from the Genie Space configuration entirely (after testing via raw tables intially) and expose the &lt;STRONG&gt;curated Metric View &lt;/STRONG&gt;later. You can establish a strict single source of truth by defining the dimensions, relationships and business measures (total slippage) inside a Metric View. You can add the tables to the space if you have separate, completely non overlapping dimension tables that aren't integrated into that Metric View. Just ensure that there is zero structural or logical overlap with the primary fact data.&lt;/P&gt;&lt;P&gt;You can keep the model focused ideally aiming for fewer than 15 objects per space to maximize efficiency. Restricting Genie's scope to just your governed Metric Views ensures that the underlying model doesn't get distracted by redundant schemas or competing definitions. It guarantees significantly higher accuracy, lower consumption and completely reliable deterministic generation for users&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jun 2026 03:03:21 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-space-delta-tables-or-metric-view/m-p/160312#M1889</guid>
      <dc:creator>balajij8</dc:creator>
      <dc:date>2026-06-24T03:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: Genie space: Delta Tables or Metric View</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-space-delta-tables-or-metric-view/m-p/160299#M1888</link>
      <description>&lt;P&gt;Thanks for the reply! Very useful.&lt;/P&gt;&lt;P&gt;If i add both the metric view and the raw table will this confuse the genie space? Or is it ok?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2026 20:06:11 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-space-delta-tables-or-metric-view/m-p/160299#M1888</guid>
      <dc:creator>Andrewww</dc:creator>
      <dc:date>2026-06-23T20:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: Genie space: Delta Tables or Metric View</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-space-delta-tables-or-metric-view/m-p/160297#M1887</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/240817"&gt;@Andrewww&lt;/a&gt;, it is fantastic to see you exploring Databricks Genie Spaces! Since you are currently in the initial experimentation phase and working with a streamlined sales dataset, starting by pointing Genie directly to your raw table is completely fine for a proof of concept.&lt;/P&gt;&lt;P&gt;However, as your data grows and you add more details, pointing Genie directly to raw data will cause friction. Think of Genie as a super smart intern. If you give it a messy, raw table, it will waste a lot of time guessing what the columns mean and might make mistakes.&lt;/P&gt;&lt;P&gt;Leaving the raw setup as-is simply forces Genie to expend extra compute resources and processing time on basic logic:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Extra Logic Processing: If a user asks for "total sales," Genie has to write more complex, multi-step SQL queries on the fly to deduce whether to sum the raw amount column or filter out cancelled orders first.&lt;/LI&gt;&lt;LI&gt;Slow Answers: Querying raw rows forces Genie to scan every single record for every question, meaning your users wait longer for answers.&lt;/LI&gt;&lt;LI&gt;Complex Join Computations: As you add more tables later, Genie will have to dynamically compute table relationships and keys for every session, which adds computational overhead compared to reading a pre-governed view.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Creating a clean, pre-modeled metric view changes everything because it gives Genie a clear map to follow. You can lock your business math such as excluding cancelled orders, directly inside the view. Genie just reads it, ensuring everyone gets the exact same answers with much better performance.&lt;/P&gt;&lt;P&gt;To scale this smoothly, think of your data as a production line that refines raw data into high-quality answers:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Bronze Layer: This holds your raw, unedited sales entries, which are great for storage but too noisy for Genie.&lt;/LI&gt;&lt;LI&gt;Silver Layer: This cleans up your records, strips out processing errors, and standardizes dates.&lt;/LI&gt;&lt;LI&gt;Gold Layer: This is your highly polished semantic view built on top of that clean data, holding your official business metrics. This is the absolute best place to point Genie.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;To get started with this setup, the official documentation recommends keeping your space focused on one small business topic at first. You should also give Genie a benchmarking cheat sheet of 5 to 10 example questions your team will actually ask to track accuracy.&lt;/P&gt;&lt;P&gt;Your biggest quick win right now is configuring your metadata to speak plain English:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Use Clear Synonyms: Map business terms or shorthand like "Revenue" or "Spend" directly to your table's columns.&lt;/LI&gt;&lt;LI&gt;Add Field Descriptions: Write simple, clear comments on your columns in Databricks. Genie reads these comments natively, which instantly stops the guessing game and ensures highly accurate answers.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;For a deeper dive into these optimization strategies, you can read the full &lt;A href="https://www.databricks.com/blog/data-dialogue-best-practices-guide-building-high-performing-genie-spaces" target="_blank" rel="noopener"&gt;Databricks AI/BI Genie Best Practices Guide&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Happy experimenting, and enjoy building out your space!&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2026 19:52:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-space-delta-tables-or-metric-view/m-p/160297#M1887</guid>
      <dc:creator>anshul2528</dc:creator>
      <dc:date>2026-06-23T19:52:30Z</dc:date>
    </item>
    <item>
      <title>Genie space: Delta Tables or Metric View</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-space-delta-tables-or-metric-view/m-p/160285#M1886</link>
      <description>&lt;P&gt;I have started experimenting with Genie Spaces.&lt;/P&gt;&lt;P&gt;I have a delta table with sales information. It has a date column, customer, product and amount bought.&lt;/P&gt;&lt;P&gt;My question is, is it better to point the genie space to the raw table or create a metric view with all the possible measures someone might ask? Considering this will also be enriched in the future with more data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2026 17:24:38 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-space-delta-tables-or-metric-view/m-p/160285#M1886</guid>
      <dc:creator>Andrewww</dc:creator>
      <dc:date>2026-06-23T17:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Genie spaces</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-spaces/m-p/160275#M1885</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/238961"&gt;@prasuanu1222&lt;/a&gt;, For 10,000 daily users and 100+ requests per minute, plain iframe embedding is probably not enough by itself.&lt;/P&gt;&lt;P&gt;Databricks has workspace level throughput limits for Genie. For iframe/UI access, the documented limit is around 20 questions per minute per workspace across all Genie Spaces. For the Genie Conversation API free tier, it is around 5 questions per minute per workspace. So if the application is expected to receive 100+ requests per minute, that will go beyond the default limits.&lt;/P&gt;&lt;P&gt;For this scale, you should look at higher throughput options with Databricks. From the application side, you should also avoid sending every user question directly to Genie. At 10,000 daily users, many questions may be repeated or follow common patterns. A better design would be to put a controlled backend layer in front of Genie to handle caching, throttling, retry/backoff, and routing.&lt;/P&gt;&lt;P&gt;For example, common questions can be answered from cache, predefined SQL, or dashboards. Only new or truly ad hoc questions should go to Genie.&lt;/P&gt;&lt;P&gt;So for this use case, you should consider the following:&lt;/P&gt;&lt;P&gt;* Use iframe only if actual peak usage stays within the supported limits.&lt;BR /&gt;* For 100+ requests per minute, discuss higher throughput options with Databricks.&lt;BR /&gt;* Add an application/backend layer for caching, queueing, throttling, and routing.&lt;BR /&gt;* Use dashboards or predefined queries for repeated questions.&lt;BR /&gt;* Use Genie mainly for conversational or ad hoc analytics.&lt;BR /&gt;* If a custom UX is required, use the Conversation API with proper capacity planning instead of plain iframe alone.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2026 15:05:53 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-spaces/m-p/160275#M1885</guid>
      <dc:creator>bala_sai</dc:creator>
      <dc:date>2026-06-23T15:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Genie spaces</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-spaces/m-p/160269#M1884</link>
      <description>&lt;P&gt;Thanks for answering the question one more clarification is we want to embeded this as iframe in a external application and this application is used by 10000 users daily which will go off the limits on the no of requests and the genie space will have more than 100 requests for a minute so how to handle that?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2026 14:38:58 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-spaces/m-p/160269#M1884</guid>
      <dc:creator>prasuanu1222</dc:creator>
      <dc:date>2026-06-23T14:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: Genie spaces</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-spaces/m-p/160133#M1883</link>
      <description>&lt;P&gt;Genie Spaces do not expose a single fixed model choice for standard usage it uses a compound AI system.&lt;/P&gt;&lt;P&gt;For cost, I would split it into two areas:&lt;/P&gt;&lt;P&gt;The first one is the SQL warehouse cost. Genie still has to run SQL against the warehouse attached to the space, so this depends on the warehouse type/size, query runtime, concurrency, and how many questions users are asking. This is probably the easier part to estimate once we have some query history from a pilot.&lt;/P&gt;&lt;P&gt;The second one is Genie or LLM usage cost, this depends more on the number of users, how many questions they ask, and whether the usage is happening through the UI/embed experience or through the API.&lt;/P&gt;&lt;P&gt;For embedding, API is not necessarily the only path. If the requirement is just to let users access an existing Genie Space from another internal app, iframe embedding is probably the simpler option. It avoids building a custom API flow for every interaction.&lt;/P&gt;&lt;P&gt;A couple of things still matter though like users need access to the Genie Space and the underlying data, and the workspace admin has to allow that application/site for embedding. Also users can interact with the embedded Genie Space, but they cannot edit the space configuration from there.&lt;/P&gt;&lt;P&gt;If the requirement is a fully custom experience across many Genie Spaces, then the Conversation API may still be needed. In that case it is better to avoid a direct one to one integration for every space. A better design would be to have a common backend layer that routes requests to the right Genie Space, with caching, queueing/retry logic, and maybe fewer curated domain level spaces instead of too many small spaces.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2026 15:40:53 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-spaces/m-p/160133#M1883</guid>
      <dc:creator>bala_sai</dc:creator>
      <dc:date>2026-06-22T15:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: Genie spaces</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-spaces/m-p/160131#M1882</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/238961"&gt;@prasuanu1222&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;For the first question, it has been answered before on this forum. Genie is more of a managed service. You can find details about the underlying models on this &lt;A href="https://docs.databricks.com/aws/en/databricks-ai/partner-powered" target="_blank"&gt;page&lt;/A&gt;. This can change as Databricks switches to the best model available at the time.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From a cost perspective, Genie costs have two parts. LLM usage charges and the existing compute cost. Compute is billed separately and unchanged by Genie Paygo. For Genie Spaces specifically, the &lt;A href="https://www.databricks.com/product/pricing/genie" target="_blank"&gt;FAQ&lt;/A&gt; says&amp;nbsp;e&lt;SPAN&gt;very user gets 150 DBUs of free usage every month, covering Genie, Genie Spaces, and Genie Code. Many users never exceed it. So, that should give you an indication. You can also check &lt;A href="https://community.databricks.com/t5/data-governance/manage-budgets-and-cost-controls-for-genie/m-p/159899#M2869" target="_blank"&gt;this&lt;/A&gt; community post.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;For the second question... i&lt;/SPAN&gt;f the goal is simply to surface a Genie Space within another website or application, the API is no longer the only option. Databricks now documents a native iframe-based option here...&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/genie/embed" rel="noopener noreferrer nofollow" target="_blank"&gt;Embed a Genie Space in an external app&lt;/A&gt;. That page explains how a workspace admin must first allow the embedding domain, after which a space author can generate iframe code directly from the Share dialog.&lt;/P&gt;
&lt;P class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;The important limitation is that this does not bypass throughput limits by having many spaces. The iframe path is documented as 20 questions per minute per workspace across all Genie Spaces, not per space.&lt;/P&gt;
&lt;P class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;By contrast, the public docs for the Conversation API say the free tier is best-effort five questions per minute per workspace across all Genie Spaces. So if you were avoiding the API because you have a large number of spaces, that concern is valid, but the same general principle still applies... the limit is enforced at the workspace level rather than separately for each space.&lt;/P&gt;
&lt;P class="wnfdntt _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;So...&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;If you only need to embed the existing Genie experience inside another app, use the documented iframe approach.&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/genie/embed" rel="noopener noreferrer nofollow" target="_blank"&gt;Embed a Genie Space in an external app&lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;If you need a fully custom UX, custom orchestration, or application-controlled rendering, then the API is still the right path.&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/genie/conversation-api" rel="noopener noreferrer nofollow" target="_blank"&gt;Use the Genie Spaces API&lt;/A&gt;.&lt;/LI&gt;
&lt;LI&gt;If you go down the API route, the docs explicitly recommend retry logic and exponential backoff to handle throughput constraints gracefully.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2026 15:19:14 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-spaces/m-p/160131#M1882</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-06-22T15:19:14Z</dc:date>
    </item>
    <item>
      <title>Genie spaces</title>
      <link>https://community.databricks.com/t5/generative-ai/genie-spaces/m-p/160123#M1881</link>
      <description>&lt;P&gt;Hello Team&lt;BR /&gt;&lt;BR /&gt;I am planning to use a genie space for our project as we have seen some changes to costing i would like to understand few things&lt;BR /&gt;1) what model does a genie space use and how to get costing estimate for the genie space?&lt;BR /&gt;2) we want to embeded this genie space in another application i see we have only api way to do that but we have limited number of api we have very large number of api spaces i dont think that is option how can we find a work around that?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2026 14:09:58 GMT</pubDate>
      <guid>https://community.databricks.com/t5/generative-ai/genie-spaces/m-p/160123#M1881</guid>
      <dc:creator>prasuanu1222</dc:creator>
      <dc:date>2026-06-22T14:09:58Z</dc:date>
    </item>
  </channel>
</rss>

