You can use built-in AI functions directly in Databricks SQL
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2026 10:14 AM
Databricks provides built-in AI functions that can be used directly in SQL or notebooks, without managing models or infrastructure.
Example:
SELECT ticket_id, ai_generate( 'Summarize this support ticket:\n{{text}}', 'databricks-dbrx-instruct', description ) AS summary FROM support_tickets;
This is useful for:
Text summarization
Classification
Enrichment pipelines
No model deployment required.