Salesforce Models API Feedback Gathering
Salesforce Models API provides Apex classes and REST endpoints that can be used in your application to interact with the large language models (LLMs) from the Salesforce partners, including Anthropic, ....
Salesforce Models API provides Apex classes and REST endpoints that can be used in your application to interact with the large language models (LLMs) from the Salesforce partners, including Anthropic, ....
In this Blog Post, I have used Salesforce Lightning Web Component to invoke the Google Vertex AI Agent. Please check the following for the prerequisites. https://www.infallibletechie.com/2025/03/invoke-google-vertex-ai-agent-from-salesforce-apex.html Sample Code: Apex Controller: ....
sendTextMessage() and setAgentInput() methods from Salesforce lightning-conversation-toolkit-api can be used in the Lightning Web Component to send message and set message in the Enhanced Conversation Component in the Lightning Record ....
In this Blog Post, Conversation Entries retrieval is for enhanced messaging channels and not for the standard messaging channels. https://www.infallibletechie.com/2024/03/how-to-get-conversation-entries-for-salesforce-enhanced-channels.html To display Salesforce Conversation Entries in Tabular Format, we can ....
Salesforce Models API can be used for LLM Model selection for conversation summary. https://www.infallibletechie.com/2025/03/salesforce-models-api.html In this Blog Post, I have used Custom Metadata Type to store the Model Name and ....
The GraphQL wire adapter can be used to fetch/retrieve and display Custom Metadata Type records in Salesforce Lightning Web Component without using Apex. Sample Custom Metadata Type: Sample Lighting Web ....
We can securely and seamlessly access the Salesforce Agent APIs from Lightning Web Component using Apex. Salesforce Agent API Setup: https://www.infallibletechie.com/2025/02/salesforce-agent-api.html In order to store the Consumer Key, Consumer Secret, ....
We can download the content as text file in Salesforce Lightning Web Component by creating an anchor element and making use of the click() method. In this following sample Lightning ....
ProcessInstance object/entity contains the current pending Approval Step. TargetObjectId can be used to get the Approval Step for the record. Using the ProcessInstance, we can query the ProcessInstanceWorkitem object/entity to ....
Exception: Unsupported reference Case.Owner.Email Resolution: Unsupported reference Case.Owner.Email Salesforce Exception is thrown when we try to import the email field of the Case Owner. Case Owner field is a Polymorphic ....