Salesforce Archives ~ fitzmoskal https://fitzmoskal.me/category/technologies/working-knowledge/salesforce/ You are _here_ Tue, 05 Mar 2024 20:59:04 +0000 en-GB hourly 1 https://wordpress.org/?v=6.9.4 https://fitzmoskal.me/wp-content/uploads/2024/02/cropped-result_880649-32x32.jpeg Salesforce Archives ~ fitzmoskal https://fitzmoskal.me/category/technologies/working-knowledge/salesforce/ 32 32 11678478 RAG with Offline LLM https://fitzmoskal.me/rag-with-offline-llm/ Tue, 05 Mar 2024 20:59:03 +0000 https://fitzmoskal.me/?p=1755 During my time as Head of Professional Services for a private Genomics based company I spearheaded an initiative to utilise

The post RAG with Offline LLM appeared first on fitzmoskal.

]]>

During my time as Head of Professional Services for a private Genomics based company I spearheaded an initiative to utilise an open source offline LLM for analysing our Jira, Confluence and Salesforce docs for quick retrieval of process and technical information.

The purpose was twofold,

a) To create a common ‘search’ tool in order to locate a source of truth as to what was configured and where, and

b) To be able to generate process documents very quickly in whole or in part through the use of generative AI.

As these were sensitive company documents, use of a service like ChatGPT was restricted, which is why we opted to trial PrivateGPT with Llama-2-7b amongst other models.

We found RAG to be less than perfect, but it did effectively allow us to search out the right documents. Text generation was better in that we managed to produce good content as an initial template for a process guides, as well as feeding a full process document to generate a RASCI chart. We ran the pilot service on AWS EC2 infrastruture.

The post RAG with Offline LLM appeared first on fitzmoskal.

]]>
1755
Online Betting Platforms – CMDB Data https://fitzmoskal.me/online-betting-platform-cmdb-data/ Tue, 20 Feb 2024 18:56:33 +0000 https://fitzmoskal.me/?p=1372 I was brought in to architect and deliver an data pipeline for updating their CMDBs from multiple data sources. The

The post Online Betting Platforms – CMDB Data appeared first on fitzmoskal.

]]>

I was brought in to architect and deliver an data pipeline for updating their CMDBs from multiple data sources. The CMDB itself was hosted on Salesforce and the data sources were Discovery, Active Directory, Spreadsheets and SCCM.

A particular challenge was being restricted to operating remotely using TeamViewer – which does not perform well over data instensive remote connections – and requires an active user on the end to keep the connection going. This did cause development work to go much slower than planned, but thankfully did not cause overall delay to project.

The integrations were developed, tested and deployed successfully to the satisfaction of the client.

The post Online Betting Platforms – CMDB Data appeared first on fitzmoskal.

]]>
1372
Major Fashion Retailer – Digital Transformation https://fitzmoskal.me/major-fashion-retailer-digital-transformation/ Tue, 20 Feb 2024 18:26:35 +0000 https://fitzmoskal.me/?p=1369 Over the years I built a relationship with this global fashion brand in facilitating their ongoing digital transformation. The first

The post Major Fashion Retailer – Digital Transformation appeared first on fitzmoskal.

]]>

Over the years I built a relationship with this global fashion brand in facilitating their ongoing digital transformation. The first engagement was in architecting and implementing a number of critical integrations with their CMDB from various data sources, allowing them to gain full central visiblity of their enterprise infrastructure. Later, I was again called upon to re-architect and extend the earlier integrations in preparation for a move of CMDB cloud platforms.

As a Principle Solutions Architect I also oversaw the technical delivery of their managed services – consulting on roadmaps and strategy with the client. I built a trusting working relationship and also proposed and worked on implementing a new feature of exception reporting, which helped them to identify, understand and narrow down the discrepencies between source data and CMDB data. The result was clear visibility and improved data quality of their CMDB.

The post Major Fashion Retailer – Digital Transformation appeared first on fitzmoskal.

]]>
1369
ETL Tools https://fitzmoskal.me/etl-tools/ Mon, 19 Feb 2024 20:19:56 +0000 https://fitzmoskal.me/?p=1133 Tools for bulk download of Confluence, Jira and Salesforce docs. Includes a script for buggy quarantining failed PDFs. This can

The post ETL Tools appeared first on fitzmoskal.

]]>
Tools for bulk download of Confluence, Jira and Salesforce docs. Includes a script for buggy quarantining failed PDFs. This can then be used for RAG with an offline LLM client.

https://github.com/codefitz/ETL-tools

The post ETL Tools appeared first on fitzmoskal.

]]>
1133
Spooning with Pentaho Data Integrator https://fitzmoskal.me/spooning-with-pentaho-data-integrator/ Fri, 14 Mar 2014 12:47:26 +0000 http://wafitz.net/?p=861 Pentaho Data Integrator is a neat open source, cross-platform tool for making light work of ETL. I have it set up

The post Spooning with Pentaho Data Integrator appeared first on fitzmoskal.

]]>
Pentaho Data Integrator is a neat open source, cross-platform tool for making light work of ETL. I have it set up on my Ubuntu laptop and can run it directly from the command line, or as part of a chron job.

However I found a couple of annoyances when running it from CLI, one was in having to keep a terminal window open, the other was having to run it from it’s install directory – particularly when it comes to relative path names for kettle jobs.

So I created an alias that runs PDI in an interactive shell allowing you to run it from one a word command, and it occurred to me that this might be useful to share. Here you go:

alias spoon='sh -c '\''cd /opt/pentaho/data-integration; ./spoon.sh&'\'''

 

The post Spooning with Pentaho Data Integrator appeared first on fitzmoskal.

]]>
861