<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Salesforce on SoloSoft</title><link>https://www.solosoft.dev/tags/salesforce/</link><description>Recent content in Salesforce on SoloSoft</description><generator>Hugo</generator><language>en-us</language><atom:link href="https://www.solosoft.dev/tags/salesforce/index.xml" rel="self" type="application/rss+xml"/><item><title>Certinia Reimagines the Future Blueprint of the Professional Services Industry w</title><link>https://www.solosoft.dev/trends/2026-04-17-certinia-reimagines-professional-services-with-ag/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/trends/2026-04-17-certinia-reimagines-professional-services-with-ag/</guid><description>&lt;h2 id="introduction-as-the-alarm-of-saaspocalypse-rings-who-is-redefining-the-rules-of-the-game"&gt;Introduction: As the Alarm of &amp;lsquo;SaaSpocalypse&amp;rsquo; Rings, Who is Redefining the Rules of the Game?&lt;/h2&gt;
&lt;p&gt;In recent years, the enterprise software market has been permeated by anxiety: Has the automation logic of traditional Software-as-a-Service (SaaS) reached its end? As AI evolves from a passive tool into autonomous, collaborative &amp;lsquo;agents,&amp;rsquo; the entire value chain of software delivery and services is being restructured. This is not unfounded worry but an ongoing industry fault line. In this transformation, the moves of Certinia (formerly FinancialForce) are particularly noteworthy. It is not a disruptor starting from scratch but a seasoned player deeply embedded in the Salesforce ecosystem, specializing in Professional Services Automation (PSA). When it chose to place AI agents at the core of its product and launched the Veda Suite, we see a clear signal of an industry paradigm shift: the future of professional services is &amp;lsquo;hybrid teams.&amp;rsquo;&lt;/p&gt;</description></item><item><title>LAVIS: Salesforce's Library for Vision-Language AI</title><link>https://www.solosoft.dev/post/lavis-multimodal-2026/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/lavis-multimodal-2026/</guid><description>&lt;p&gt;Vision-language AI &amp;ndash; models that understand both images and text &amp;ndash; is one of the most rapidly advancing areas of artificial intelligence. Salesforce&amp;rsquo;s LAVIS (Library for Vision-Language Intelligence) provides a unified framework for training, evaluating, and deploying a wide range of vision-language models including BLIP, BLIP-2, InstructBLIP, and ALBEF.&lt;/p&gt;
&lt;p&gt;LAVIS is designed for both researchers and practitioners. Researchers get clean implementations of state-of-the-art models with reproducible benchmarks, while practitioners get a streamlined API for applying these models to real-world tasks like image captioning, visual question answering, and cross-modal retrieval.&lt;/p&gt;
&lt;h2 id="supported-models"&gt;Supported Models&lt;/h2&gt;
&lt;table&gt;
 &lt;thead&gt;
 &lt;tr&gt;
 &lt;th&gt;Model&lt;/th&gt;
 &lt;th&gt;Tasks&lt;/th&gt;
 &lt;th&gt;Year&lt;/th&gt;
 &lt;th&gt;Parameters&lt;/th&gt;
 &lt;/tr&gt;
 &lt;/thead&gt;
 &lt;tbody&gt;
 &lt;tr&gt;
 &lt;td&gt;BLIP&lt;/td&gt;
 &lt;td&gt;Captioning, retrieval, VQA&lt;/td&gt;
 &lt;td&gt;2022&lt;/td&gt;
 &lt;td&gt;470M&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;BLIP-2&lt;/td&gt;
 &lt;td&gt;Captioning, VQA, retrieval&lt;/td&gt;
 &lt;td&gt;2023&lt;/td&gt;
 &lt;td&gt;1.2B&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;InstructBLIP&lt;/td&gt;
 &lt;td&gt;Instruction-following VQA&lt;/td&gt;
 &lt;td&gt;2023&lt;/td&gt;
 &lt;td&gt;1.2B&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;ALBEF&lt;/td&gt;
 &lt;td&gt;Retrieval, grounding&lt;/td&gt;
 &lt;td&gt;2021&lt;/td&gt;
 &lt;td&gt;210M&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;ALPRO&lt;/td&gt;
 &lt;td&gt;Video-language tasks&lt;/td&gt;
 &lt;td&gt;2022&lt;/td&gt;
 &lt;td&gt;250M&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="model-architecture"&gt;Model Architecture&lt;/h2&gt;

&lt;figure class="mermaid-wrapper not-prose" role="img" aria-label="Mermaid diagram"&gt;
 &lt;div class="mermaid-container"&gt;
 &lt;pre class="mermaid"&gt;flowchart LR
 A[Image] --&amp;gt; B[Vision Encoder&amp;lt;br/&amp;gt;ViT]
 C[Text] --&amp;gt; D[Text Encoder&amp;lt;br/&amp;gt;BERT]
 B --&amp;gt; E[Cross-Modal Attention]
 D --&amp;gt; E
 E --&amp;gt; F{Fusion Strategy}
 F --&amp;gt;|BLIP| G[Multi-modal Encoder]
 F --&amp;gt;|BLIP-2| H[Q-Former]
 F --&amp;gt;|InstructBLIP| I[Q-Former &amp;#43; LLM]
 G --&amp;gt; J[Output]
 H --&amp;gt; J
 I --&amp;gt; J&lt;/pre&gt;
 &lt;script type="application/mermaid"&gt;flowchart LR
 A[Image] --&gt; B[Vision Encoder&lt;br/&gt;ViT]
 C[Text] --&gt; D[Text Encoder&lt;br/&gt;BERT]
 B --&gt; E[Cross-Modal Attention]
 D --&gt; E
 E --&gt; F{Fusion Strategy}
 F --&gt;|BLIP| G[Multi-modal Encoder]
 F --&gt;|BLIP-2| H[Q-Former]
 F --&gt;|InstructBLIP| I[Q-Former + LLM]
 G --&gt; J[Output]
 H --&gt; J
 I --&gt; J&lt;/script&gt;
 &lt;/div&gt;
&lt;/figure&gt;&lt;p&gt;Each model in LAVIS uses a different fusion strategy. BLIP uses a standard multi-modal encoder, BLIP-2 introduces the Q-Former (a lightweight transformer that bridges vision and text), and InstructBLIP adds a frozen LLM for instruction-following.&lt;/p&gt;</description></item><item><title>Who Gets a Dedicated Deployment Engineer? The Two-Tier World of B2B AI Agent Ser</title><link>https://www.solosoft.dev/trends/2026-04-24-who-gets-an-fde-and-who-doesnt-the-great-b2b-ai-d/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/trends/2026-04-24-who-gets-an-fde-and-who-doesnt-the-great-b2b-ai-d/</guid><description>&lt;h2 id="why-did-the-dedicated-deployment-engineer-suddenly-become-the-key-to-ai-agent-success-or-failure"&gt;Why Did the Dedicated Deployment Engineer Suddenly Become the Key to AI Agent Success or Failure?&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Short answer: Because the essence of an AI agent is &amp;ldquo;system integration,&amp;rdquo; not &amp;ldquo;software installation&amp;rdquo;; without a human engineer to help connect the enterprise&amp;rsquo;s actual data, workflows, and permission structures, even the best model will only produce a non-functional shell.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Over the past 18 months, we have run more than 20 AI agents internally at SaaStr, generating over $1 million in revenue. This experience has led me to a brutal conclusion: the biggest variable determining agent success has never been model selection, prompt design, or even vendor brand, but &lt;strong&gt;whether the vendor assigned a human engineer during the deployment phase&lt;/strong&gt;.&lt;/p&gt;</description></item></channel></rss>