I have a chat completion prompt that creates a CSV for me. The header being returned by the prompt is:
Title|SourceName|Publication Date|Abstract|URL
However, the CSV parser that the response is fed to has Authors where there should be Abstract and Abstract where there should be URL. I previously had an Authors field but it was removed. The CSV Parser is set to simply take {{10.choices[].message.content}}
.
I created a new parser and it works fine, so it appears that CSV Parser may cache a previous format? If that’s true, how can it be reset? Thanks very much.