Hi all,
I am working on a scenario where sentiment analysis of feedback is being done and a auto response is being generated.
I am using Google Gemini AI (Completion unit) module which receives feedback in the form of text as input and it performs following actions.
- Sentiment analysis: positive or Negative
- Categorization
- Response email
The output bundle from Gemini AI is:
- Result
"Category": ["Environment"],
"Response": "Hello, Thank you for your feedback. } ```
I have tried many modules (Json Parser, aggregator to capture each element into a spreadsheet (sentiment, category and Response) but everytime it is throwing error of " DataError
Source is not valid JSON." ###### Origin
What can I do that the individual elements of json output bundle from Gemini AI be captured in the next module without hitting the error.
Thanks!