I saw the following blog to 'Create an SAP UI5 Task for a Business Process'Create an SAP UI5 Task for a Business Process | SAP TutorialsMy question is, is this only option for replacing the standatd BPA Approval form with a UI5 app, or is this also p...
In my SAP Build Process Automation (BPA) process, I'm trying to setup an output parameter from an automation into an approval form.Here is the JSON response from the automation. {
"automationOutput":{
"poLines":[
{
"text...
When running a test on an action in SAP Build I get the following error.{"code": 12000,"message": "Execution of action failed","correlationId": "27932dd7-91bf-4fe8-4402-19710945fc43","details": [{ "code": 12000,"message": "Failed to create action out...
I'm putting together a CSV import using Build apps, with a Desitination pointing to a python app deployed on BTP.Everything works fine, until I hit the 120000ms (2 minute) timeout when processing a large file, at which point the Build app throws an e...
I've installed the CAP LLM Plugin (v.1.3.3). However, for the getRagResponse() and similaritySearch() methods, the db is not connected, even if I set in in the calling script.For now I've put in the workaround to the plugin to connected to the db on ...
I got this working but can this be done with a table bound to items as opposed to a list of input boxes.Do you have an example view and manifest for that?
The issue was that the output parameter of the automation can't be set to an object or an array, only an 'any' type, which can't be interpreted as an object in the approval.Solution:A script task needed to be created after the automation, which runs ...
Hi @KevinR. Great blog!I can get the loader working fine, as it calls getEmbeddings() in the cap-llm-plugi, but handles the db insert in the CAP services.However, when I try to run getRagResponse() or similaritySearch() I get this error...{
"err...
I've had to modify the response from the sim search. Doing this make the reponses much cleaner and more useful.let results = similaritySearchResults;
results.forEach(item => {
delete item.TEXT_CHUNK;
delete item.ID;
...
I'm thinking the same.The npm repo cap-llm-plugin - npm (npmjs.com) hasn't been updated for a month.Other than that, this appears to be very bare bones at the moment, and I've noticed a bug whereby running the rag or sim search needs an addition cds....