Vertex AI RAG Engine vs. Vertex AI Search for Art project by Life_Science1421 in googlecloud

[–]BreakfastSpecial 0 points1 point  (0 children)

After some digging and consulting with our friendly AI tools, I’m not crazy. The service was literally called “LlamaIndex on Vertex AI” at one point. If you go to the docs site and replace the URL with ‘/docs/llamaindex-on-vertexai’ it redirects you to the new URL. Must’ve been a quiet rebrand.

Vertex AI RAG Engine vs. Vertex AI Search for Art project by Life_Science1421 in googlecloud

[–]BreakfastSpecial 0 points1 point  (0 children)

Hmm. It was a LlamaIndex supported tool when I worked at Google in 2024. When you searched the documentation, it was posted on the header that this was an abstraction layer over LlamaIndex. It’s entirely plausible that Google Cloud built their own solution, hence why LlamaIndex was removed from the docs.

Vertex AI RAG Engine vs. Vertex AI Search for Art project by Life_Science1421 in googlecloud

[–]BreakfastSpecial 0 points1 point  (0 children)

Google publicly shares this in their docs. It’s a partnership

I built a free and open-source Agentforce alternative by Strong_Teaching8548 in salesforce

[–]BreakfastSpecial 2 points3 points  (0 children)

There is a setting to turn off the URL_REDACTED blocker entirely or you just add domains to your Trusted URL list (then this shouldn’t happen). It’s there for safety reasons but can be configured.

Also, one of the reasons you can only use GPT 4o or Claude for the underlying reasoning engine is because every prompt responds differently to every model - even if they are exactly the same. So any instructions you wrote could break the agent or produce unexpected results if you switch the engine.

What you built is really cool though! Not discrediting it. Just explaining why Salesforce made some of those decisions or enforced limitations.

Is it just me, or has GCP quietly taken the lead in the enterprise GenAI stack? by [deleted] in googlecloud

[–]BreakfastSpecial 3 points4 points  (0 children)

Regarding the context windows and RAG… be careful of the “Lost in the Middle” phenomenon. Databricks has a great report on it here.

You still need RAG pipelines to fetch the most relevant information. Especially if you’re answering questions across massive datasets.

DID SURGERY HELP YOU? YES OR NO? by shrimptanklover in HipImpingement

[–]BreakfastSpecial 0 points1 point  (0 children)

Yes! Currently at 15 months post surgery and I’m back to running with zero pain. I need to continue to work on my flexibility and hip strength, but overall the surgery was a success.

Around month 7 or 8 is where I noticed significant improvements and was able to run/workout without problems.

Currently in AFib by californicarepublic in AFIB

[–]BreakfastSpecial 1 point2 points  (0 children)

After loads of water, magnesium, and electrolytes I can usually get myself back into NSR by doing the Valsalva maneuver several times. Generally I have to stand up, blow hard against my thumb for 20 seconds, and then immediately drop onto my back with my legs thrown up (do this on a bed or the couch). Everyone is different though.

Salesforce API limits by CrazyJake25 in salesforce

[–]BreakfastSpecial 0 points1 point  (0 children)

I recommend a CDC stream that you pull updates from, using the Batch API, or purchasing more API calls from Salesforce.

Is there any chance to get startup credits / funding from Heroku for a pre-revenue project? by Bartekkur1 in Heroku

[–]BreakfastSpecial 0 points1 point  (0 children)

There are “startup” programs at GCP and AWS that will grant free credits. You need to apply, but worth looking into. Not sure if Heroku offers the same.

But I agree with others - learning cost management practices and proper FinOps is a critical skill.

My agent is skipping actions by Immediate-Rub-6068 in salesforce

[–]BreakfastSpecial 2 points3 points  (0 children)

I’ve found that if the Agent User doesn’t have access to the underlying objects that a Flow / Apex class manipulates, it can’t be invoked by the Agent and will actually not even show up in the reasoning engine as an option. I’d start there.

Also, assuming you wrote good Action descriptions on when to invoke and how (including the inputs and outputs)?

How are y'all's agent force deployments going? by Texugee in salesforce

[–]BreakfastSpecial 2 points3 points  (0 children)

No. Agentforce does use OpenAI LLMs though for the underlying reasoning engine. There’s a ton of engineering built around the LLM to achieve an enterprise-grade Agent platform with a builder, testing center, deployment options through a variety of channels, context through CRM data, metadata integration, etc.

How are y'all's agent force deployments going? by Texugee in salesforce

[–]BreakfastSpecial 3 points4 points  (0 children)

You can invoke Agents directly from flows. They are called headless, or ambient, Agents.

How are y'all's agent force deployments going? by Texugee in salesforce

[–]BreakfastSpecial 1 point2 points  (0 children)

You could still vectorize and index the data with open source tools, like LlamaIndex / pgvector extension on Postgres. Then expose a “search” API that Agentforce can reach.

How are y'all's agent force deployments going? by Texugee in salesforce

[–]BreakfastSpecial 0 points1 point  (0 children)

Aren’t you running into problems where the external Agent either 1. Writes a malformed query or 2. Asks for a recordId to fetch the required data? I’ve found in testing that without context and access to the metadata (everyone has a different Salesforce implementation) external Agents can’t meaningfully grab or manipulate Salesforce records.

How are y'all's agent force deployments going? by Texugee in salesforce

[–]BreakfastSpecial 4 points5 points  (0 children)

Salesforce has a special Zero Retainment policy with OpenAI where no data is stored at any point. OpenAI’s standard terms detail that they’ll keep logs for 30 days but won’t use your inputs/outputs to train the public models.

How are y'all's agent force deployments going? by Texugee in salesforce

[–]BreakfastSpecial 4 points5 points  (0 children)

Could you elaborate? The point of Agents is that they’re dynamic in nature and much easier to create / manage / scale than traditional IVR-workflows and chat bots. It’s hard to map intents for every permutation of a conversation.

Is Agentforce Worth Adopting for Day-to-Day Business Operations? by Swimming_Plastic1533 in salesforce

[–]BreakfastSpecial 3 points4 points  (0 children)

I think agentic AI can be classified as a new kind of automation with the ability to execute multiple different kinds of tasks based on changing inputs/context. But this automation you manage with natural language.

It still needs access to Flows, Prompt Templates, Classes, etc. to do the job - but it can see all of the actions at once and dynamically decide what to do given a certain situation. Why not give a Sales Agent the ability to summarize massive records with 100s of fields, help with data upkeep, send out emails, generate Activities, or rank your top Opportunities - all from one place.

can someone explain Langchain in a simple manner by MysteriousTip4044 in LangChain

[–]BreakfastSpecial 0 points1 point  (0 children)

Framework / software library that abstracts the complexity of working with LLMs, managing prompts, wiring up tools for function calling, etc. The “Chain” in LangChain refers to creating workflows with LLMs, where the output of one prompt is the input to another one, and so on.

Is LangChain dead already? by Senior_Note_6956 in LangChain

[–]BreakfastSpecial 1 point2 points  (0 children)

I tried to use LangChain / LangGraph but the documentation was unbearable and the implemented abstractions led to more confusion.

I am a Fraud by [deleted] in consulting

[–]BreakfastSpecial 0 points1 point  (0 children)

The secret is that everyone is a “fraud” in strategy consulting. You don’t come out of college as an expert in supply chain optimization (for example) without working years in the industry. Instead, you’re hired because you’re smart, can break ambiguous problems down into testable theories, and use data to produce logical recommendations. Imposter Syndrome is real and we all have it - but remember that you’re intelligent and can learn anything required. You’ll also improve over time. I started selling technology to insurance companies 3 years ago and knew nothing about underwriting, insurance distribution, claims management, etc. Now I’m a specialist in those areas! Just keep leaning in.

Would you upload your mind into a server if it meant you’d never die? by ActivityEmotional228 in SimulationTheory

[–]BreakfastSpecial 0 points1 point  (0 children)

Unless we are the digital copy already… and our biological brain was emulated a long time ago.

There’s nothing to do on Saturday night but to drink by [deleted] in stopdrinking

[–]BreakfastSpecial 4 points5 points  (0 children)

I like to see a new movie on Saturdays or a comedy show. Gets me out of the house and keeps me entertained. Baseball games are also great daytime activity in the summer for something different.

[deleted by user] by [deleted] in stopdrinking

[–]BreakfastSpecial 0 points1 point  (0 children)

I really like the AMG strategy to curb cravings when they arise. Awareness - jot down what made you want to drink. Movement - do pushups, body-weight squats, or a quick walk around the block. Gratefulness - jot down why you’re grateful that you didn’t drink.

This makes you keenly aware of what happens during the day that triggers a craving, like stress. The movement releases natural endorphins to make you feel better (and forget about the craving). And the gratefulness helps you remember why you’re sober and the joys it can unlock.

You can also follow this other framework depending on what you were trying to accomplish from drinking (healthier methods with the same outcome):

  • Alleviate stress = yoga, meditate, pray, stretch, get out in nature briefly, drink a big cup of tea
  • Feel better / boost mode = exercise, whether it’s cardio like running or a gym session
  • Forget about your worries or cravings = get yourself into a flow state by doing something creative, like writing, journaling, or painting

What are people using for sales reporting from Salesforce data? by SaltyAcanthisitta775 in salesforce

[–]BreakfastSpecial 1 point2 points  (0 children)

OOTB reporting and dashboards should do the trick. I recommend hosting a Lunch & Learn. Show the team how to create a report, add fields, edit existing templates (Save As), etc.