I have an object instance with a string property. I want to create an embedding from this property and store it in another property of the same object.
What is the simplest way to achieve this ?
I have an object instance with a string property. I want to create an embedding from this property and store it in another property of the same object.
What is the simplest way to achieve this ?
Does the relevant string property come from an input dataset or is it created/edited by the user via an Action?
For the former, I think the Text To Embedding transform in Pipeline Builder is the way to go.
For the latter, you can generate an embedding dynamically for the string using a Typescript Function and either back a Workshop variable that gets passed into the create/edit action form as a parameter - this would be synchronous - or runs asynchronous via a AIP Logic with an Execute block calling the function and an Apply Action block writing back the results, orchestrated by an Automation.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.