An Apache Spark-based analytics platform optimized for Azure.
Hi @Chan Parco
Yes. According to the current Azure Databricks documentation, OpenAI GPT-6 Astra is available through Databricks Foundation Model APIs.
The Databricks-hosted endpoint name is databricks-gpt-6-astra, and Microsoft currently lists text and image as supported inputs.
You don't need to create an Azure OpenAI external-model endpoint just to use the Databricks-hosted version. Foundation Model APIs expose Databricks-hosted models through Model Serving, and the APIs are OpenAI-compatible, so you can call them using the OpenAI client, REST API, MLflow Deployments SDK, or Databricks UI.
For example, with the OpenAI-compatible interface, the model/endpoint to target would be databricks-gpt-6-astra
One important point is regional availability. Foundation Model API availability depends on the Azure Databricks workspace region and serving mode. Microsoft maintains a region/model matrix, so if databricks-gpt-6-astra doesn't appear in your workspace under Serving, first verify that your workspace region supports that model and the serving mode you're trying to use.
There are also two different scenarios worth distinguishing:
- Databricks-hosted GPT-6 Astra: use the built-in databricks-gpt-6-astra Foundation Model API endpoint. Databricks hosts and serves the model.
- Your own external OpenAI/Azure OpenAI deployment: Azure Databricks also supports external models through Model Serving. In that architecture, Databricks acts as the managed/gateway layer while the actual model remains hosted by the external provider.
For a new implementation where you simply want to consume GPT-6 Astra from Azure Databricks, start with the Databricks-hosted Foundation Model API rather than creating an external-model endpoint.
If you're currently receiving an error, could you share the Azure Databricks workspace region, the endpoint/model name you're calling, and the exact error response? That should tell us whether this is a regional availability issue, an endpoint configuration issue, a permissions issue, or an API request issue.
References:
Databricks-hosted foundation models available in Foundation Model APIs
Databricks Foundation Model APIs overview
Supported foundation models and regions
External models in Model Serving
Help make this community better for everyone: If this answer helped or resolved your issue, please accept it or upvote it. If not, share more details in a comment so we can continue the discussion and find the right solution. Thank you.