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: ....
Prerequisites: 1. Remote Site Settings: In Salesforce Setup, add the Dialog Flow URL and Token URL. Make sure these remote site settings are active so that the Apex call to ....
In this Blog Post, I have used Agentforce Apex Agent Action to invoke the Google Gemini API for general searches. Sample Apex Class: public class GeminiAPIController { @InvocableMethod( label = ....
In this Blog Post, I have accessed the Google Gemini API from Salesforce Apex using the API Key approach. Sample Apex Code: public class GeminiAPIController { public static String invokePrompt( ....
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 ....
We can create custom Agentforce Agent actions using the Apex Rest Resource apex classes. This helps in reusing the existing Apex Development for the Agentforce Agent implementation. Steps: 1. Install ....
UserInfo.getTimeZone() can be used to get the current user time zone. UserInfo.getTimezone().getOffset() can be used to get the offset between GMT and the local time zone. addSeconds() can be used ....
In Salesforce Apex, we can make use of BusinessHours.isWithin() method to check whether the date time is within the business hours or not. Please check the following apex code for ....