<?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>topic Re: Not able to serve or interact with LLMs in Databricks free in Databricks Free Edition Help</title>
    <link>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/141414#M574</link>
    <description>&lt;P&gt;I got the same error using the free version.&lt;/P&gt;</description>
    <pubDate>Mon, 08 Dec 2025 15:40:15 GMT</pubDate>
    <dc:creator>chaowu2016</dc:creator>
    <dc:date>2025-12-08T15:40:15Z</dc:date>
    <item>
      <title>Not able to serve or interact with LLMs in Databricks free</title>
      <link>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/121530#M288</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;Just testing the new Databricks free edition. Was trying to play around with LLMs, but I', not able to create serving endpoints with foundational model entities, interact with pay-per-token foundational model APIs or use them in Databricks apps.&lt;/P&gt;&lt;P&gt;With pay-per-token foundational model APIs I get the error below (for any chosen model, not just llama-4-maverick):&lt;/P&gt;&lt;PRE&gt;{"error_code":"PERMISSION_DENIED","message":"PERMISSION_DENIED: Endpoint databricks-llama-4-maverick is not allowed to be used by your workspace. Please reach out to Databricks to enable this endpoint for your workspace or upgrade your workspace tier."}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;With serving endpoints I cannot create them as any possible entity have provisioned throughput I cannot disable/lower to 0.&lt;/P&gt;&lt;P&gt;Anyone had any luck playing with building apps or serving endpoints using LLMs with Databricks free? I cannot see from the &lt;A href="https://docs.databricks.com/aws/en/getting-started/free-edition-limitations" target="_self"&gt;limitations page&lt;/A&gt; that there should be any issue.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 21:13:41 GMT</pubDate>
      <guid>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/121530#M288</guid>
      <dc:creator>Renounce3295</dc:creator>
      <dc:date>2025-06-11T21:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to serve or interact with LLMs in Databricks free</title>
      <link>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/121601#M291</link>
      <description>&lt;P&gt;Was successful creating an endpoint using the API rather than the UI:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import requests
import json

# Set the name of the MLflow endpoint
endpoint_name = "test-throughput-endpoint"

# Name of the foundation model in Unity Catalog
model_name = "system.ai.llama-4-maverick"

# Get the API endpoint and token for the current notebook context
API_ROOT = dbutils.notebook.entry_point.getDbutils().notebook().getContext().apiUrl().get()
API_TOKEN = dbutils.notebook.entry_point.getDbutils().notebook().getContext().apiToken().get()

headers = {"Content-Type": "application/json", "Authorization": f"Bearer {API_TOKEN}"}

# Configuration for Unity Catalog foundation model
data = {
  "name": endpoint_name,
  "config": {
    "served_entities": [
      {
        "entity_name": model_name,
        "entity_version": "1",  # Use string version for UC models
        "workload_size": "Small",  # Foundation models typically need GPU
        "scale_to_zero_enabled": True
      }
    ]
  },
}

response = requests.post(
  url=f"{API_ROOT}/api/2.0/serving-endpoints", 
  json=data, 
  headers=headers
)

print(f"Status Code: {response.status_code}")
print(json.dumps(response.json(), indent=4))&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 12 Jun 2025 13:28:07 GMT</pubDate>
      <guid>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/121601#M291</guid>
      <dc:creator>Renounce3295</dc:creator>
      <dc:date>2025-06-12T13:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to serve or interact with LLMs in Databricks free</title>
      <link>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/121952#M301</link>
      <description>&lt;P&gt;I cannot get this to work. Even via the API that's been suggested..&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 07:53:09 GMT</pubDate>
      <guid>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/121952#M301</guid>
      <dc:creator>TeeVanBee</dc:creator>
      <dc:date>2025-06-17T07:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to serve or interact with LLMs in Databricks free</title>
      <link>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/121974#M302</link>
      <description>&lt;P&gt;Are you using work email or personal email&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 12:10:12 GMT</pubDate>
      <guid>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/121974#M302</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-06-17T12:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to serve or interact with LLMs in Databricks free</title>
      <link>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/121995#M306</link>
      <description>&lt;P&gt;Im using my personal mail. The error I receive after creating the serving endpoint with the API is:&lt;BR /&gt;-&amp;nbsp;&lt;SPAN&gt;Served entity `llama-4-maverick-1` entered DEPLOYMENT_FAILED state: Container creation failed&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;-&amp;nbsp;&lt;SPAN&gt;Served entity creation failed for served entity `llama-4-maverick-1`, config version 1. Error message: Container creation failed. Please see build logs for more information.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;-&amp;nbsp;&lt;SPAN&gt;Endpoint update failed for endpoint `llama-4-maverick`, config version 1.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The build log is empty.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 13:59:55 GMT</pubDate>
      <guid>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/121995#M306</guid>
      <dc:creator>TeeVanBee</dc:creator>
      <dc:date>2025-06-17T13:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to serve or interact with LLMs in Databricks free</title>
      <link>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/122536#M316</link>
      <description>&lt;P&gt;I have the same problem. I am unable to create a Serving Endpoint with any of the foundation models in the Databricks Free edition at the moment. By using the above code snippet, the provisioning starts, then it either hangs for long hours without any progress, or by looking into the Build logs, some installation scripts fail internally. If the Build logs are clean, the deployment hangs in Pending status forever. The same operation takes a few minutes in the Trial version.&lt;/P&gt;&lt;P&gt;Also the UI is strange as it would only allow Provisioned Throughput, which by definition is not supported by the Free edition, and then on clicking Create the error message indeed pops up.&lt;/P&gt;&lt;P&gt;My bet is: either provisioning foundation model Serving Endpoints do not work currently or due to the heavy limitations internally it only works once in a while after many attempts (so far, I could not make it work at all). Note: setting up an external model like OpenAI is OK, but that's just a pointer.&lt;/P&gt;&lt;P&gt;Or there are some parameterization tricks that must be used to make it work.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/170110"&gt;@TeeVanBee&lt;/a&gt;&amp;nbsp;Did you manage to make it work?&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/168672"&gt;@Renounce3295&lt;/a&gt;&amp;nbsp;Does it still work for you with that script?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 12:56:33 GMT</pubDate>
      <guid>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/122536#M316</guid>
      <dc:creator>gmrealeddiesson</dc:creator>
      <dc:date>2025-06-23T12:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to serve or interact with LLMs in Databricks free</title>
      <link>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/125252#M392</link>
      <description>&lt;P&gt;Unfortunately, I have not managed to make it work&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 08:59:08 GMT</pubDate>
      <guid>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/125252#M392</guid>
      <dc:creator>TeeVanBee</dc:creator>
      <dc:date>2025-07-15T08:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to serve or interact with LLMs in Databricks free</title>
      <link>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/128315#M438</link>
      <description>&lt;P&gt;I'm also hitting this error, any feedback here?&amp;nbsp;&lt;BR /&gt;I've not tried the API/Notebook. I've been working from the Serve Model Page&lt;/P&gt;&lt;P&gt;Steps:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Click: Models &amp;gt; llama4-maverick &amp;gt; Serve this model&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;Give it a name: "llama-4"&lt;/LI&gt;&lt;LI&gt;Leave all other settings as default&lt;/LI&gt;&lt;LI&gt;Click Create&lt;/LI&gt;&lt;LI&gt;Error message pops up: "Provisioned throughput is not enabled for this workspace."&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 10:05:31 GMT</pubDate>
      <guid>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/128315#M438</guid>
      <dc:creator>Garth</dc:creator>
      <dc:date>2025-08-13T10:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to serve or interact with LLMs in Databricks free</title>
      <link>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/141414#M574</link>
      <description>&lt;P&gt;I got the same error using the free version.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 15:40:15 GMT</pubDate>
      <guid>https://community.databricks.com/t5/databricks-free-edition-help/not-able-to-serve-or-interact-with-llms-in-databricks-free/m-p/141414#M574</guid>
      <dc:creator>chaowu2016</dc:creator>
      <dc:date>2025-12-08T15:40:15Z</dc:date>
    </item>
  </channel>
</rss>

