In today's data-driven world, integrating advanced AI capabilities into data analysis workflows is crucial for extracting meaningful insights and driving innovation. Databricks has introduced several powerful AI functions that allow users to access large language models (LLMs) directly from SQL. These functions simplify the process of incorporating AI into data workflows, making it more accessible for data analysts. This blog post explores various use-cases and provides examples of how to leverage these AI functions in SQL.

1. ai_generate_text()

Use-Case: Automatically generate product descriptions based on product features.

Description: This function can generate text based on given prompts, making it useful for creating content like product descriptions, summaries, or creative writing based on input data.

Example Implementation:

-- Generate product descriptions based on features
SELECT
    product_id,
    features,
    ai_generate_text(
        prompt = CONCAT('Generate a product description for the following features: ', features),
        model = 'azure_openai/gpt-35-turbo',
        apiKey = SECRET('tokens', 'azure-openai'),
        deploymentName = 'llmbricks',
        apiVersion = '2023-03-15-preview',
        resourceName = 'lakehouserules',
        temperature = CAST(0.7 AS DOUBLE)
    ) AS product_description
FROM
    products;

This function allows businesses to automate the creation of engaging product descriptions, saving time and ensuring consistency across product listings.

2. ai_analyze_sentiment()

Use-Case: Analyze customer feedback to determine overall sentiment.

Description: This function analyzes the sentiment of text data, such as customer reviews or feedback, to understand customer satisfaction and identify areas for improvement.

Example Implementation:

-- Analyze sentiment of customer reviews
SELECT
    review_id,
    review_text,
    ai_analyze_sentiment(
        text = review_text,
        model = 'azure_openai/gpt-35-turbo',
        apiKey = SECRET('tokens', 'azure-openai'),
        deploymentName = 'llmbricks',
        apiVersion = '2023-03-15-preview',
        resourceName = 'lakehouserules'
    ) AS sentiment
FROM
    customer_reviews;

By leveraging sentiment analysis, companies can gain valuable insights into customer perceptions and proactively address negative feedback.

3. ai_classify()

Use-Case: Classify support tickets into predefined categories.

Description: This function classifies text into predefined categories, which can be useful for organizing support tickets, emails, or any text data that needs categorization.

Example Implementation:

-- Classify support tickets into categories
SELECT
    ticket_id,
    ticket_text,
    ai_classify(
        text = ticket_text,
        categories = '["Technical Issue", "Billing", "Feature Request", "Other"]',
        model = 'azure_openai/gpt-35-turbo',
        apiKey = SECRET('tokens', 'azure-openai'),
        deploymentName = 'llmbricks',
        apiVersion = '2023-03-15-preview',
        resourceName = 'lakehouserules'
    ) AS category
FROM
    support_tickets;

Automating the classification of support tickets helps streamline the ticket management process, ensuring that each ticket is routed to the appropriate team for resolution.

4. ai_translate()