Skip to content

Instantly share code, notes, and snippets.

View abhisheksaxena7's full-sized avatar

Abhishek Saxena abhisheksaxena7

View GitHub Profile
@msrivastav13
msrivastav13 / Resources for Implementing Agentforce Service Agents.md
Last active January 4, 2025 22:27
Resources for Implementing Agentforce Service Agents

Resources for Setting Agentforce Service Agents

Below are key resources and a recorded video link to guide you through the implementation process,
from setup to advanced customization.


Recorded Video Session

Watch the recordings of the live-stream for a comprehensive walkthrough:

@msrivastav13
msrivastav13 / salesforce_prompt_builder_pocket_guide_for_apex_developers.md
Last active July 9, 2025 22:25
codeLive: A Deep Dive into Apex for Prompt Builder

What is Prompt Builder?

Prompt Builder from Salesforce is a powerful tool that enables organizations to add generative AI capabilities to their business application. It allows organizations to create and manage prompt templates.

What is Prompt Builder?

Prompts

Sets of questions or instructions provided to a large language model to generate relevant content. To learn more complete the trailhead module below

@IliaEremin
IliaEremin / app_version.gradle
Last active August 2, 2023 15:59
Npm version for gradle
def getVersionName = { getVersionProps()['appVersionName'] }
def getVersionProps() {
def versionPropsFile = file('gradle.properties')
if (!versionPropsFile.exists()) {
versionPropsFile.createNewFile()
}
def versionProps = new Properties()
versionProps.load(new FileInputStream(versionPropsFile))
return versionProps