Call Generative AI Models in Batch Transform Scripts
Call generative AI models from your code extension batch transform scripts to enrich data at scale. Send prompts and data from a data lake object (DLO) or data model object (DMO) to a configured AI model, then write the generated content to a target DLO or DMO. Use this capability to summarize, classify, or enhance records during batch transformations.
| Edition Table |
|---|
| Available in: Developer, Enterprise, Performance, and Unlimited Editions. See Data 360 edition availability. |
| Permission Sets Needed | |
|---|---|
| To call generative AI models from custom scripts: | Permission set:
|
- Set up Salesforce CLI and the Data Code Extension plugin. See Set Up Salesforce CLI for Code Extension.
- Initialize a script package and make sure that you can run local validation commands. See Write and Validate Custom Scripts.
- Use a Salesforce org with at least one generative AI model configured.
- Configure external client app access for model API authentication. Complete the steps from Get Started with Agent API.
For a reference implementation, see example/payload/entrypoint.py in the initialized script package.
Use llm_gateway_generate_text() to send a single prompt to a configured AI model for one-off text generation tasks that don’t require iterating over DataFrame rows.
Use llm_gateway_generate_text_col() to generate AI content for every record in your dataset. This built-in user-defined function (UDF) applies directly to DataFrame columns, so you can process thousands of rows efficiently. The function returns a struct containing the response and status information for each row.
-
Read your source data from a DLO or DMO.
-
Use
llm_gateway_generate_text_col()to generate text for each record. Build your prompt template with placeholders in curly braces ({field_name}), then map those placeholders to your DataFrame columns.The method returns a column with these fields:
status,response,error_code, anderror_message. Per-row failures don’t stop the entire job. To extract the field you want, use bracket notation (for example, [“response”]). -
Write the enriched data back to your target DLO or DMO.
Before deploying your script to Data 360, test it locally against your sandbox.
-
From your script package root, confirm that your entrypoint file is ready for local validation.
-
Set up an external client app for authentication.
Create an external client app with access to the Agent API by following Get Started with Agent API.
Use
http://localhost:1717/OauthRedirectas the callback URL. -
Log in to your org using the external client app credentials.
Replace
{MY_DOMAIN_URL}with your org domain and{CONSUMER_KEY}with your external client app consumer key. -
Run the script locally to test it against data in Data 360.