I have a straightforward use case - two input datasets - and I’d like to use an LLM to find matching rows from each, based on two columns.
It would be useful if “Use LLM” could take multiple inputs - so I could drag the two input datasets into the Use LLM transform, label one as ‘source’ and the other as ‘target’, and tell the LLM to find matching rows in ‘target’ for each row in ‘source’ based on free text in specific fields.
But, it looks like Use LLM is limited to one input dataframe, so I’m doing a full outer join and bringing that into Use LLM - but it seems clunky.. and also doesn’t work. Seems like Use LLM only handles one row at a time - so is unable to search the ‘target’ dataset for matching rows..