Skip to content

Commit e920dbe

Browse files
Feedback Analyzer (#24)
1 parent 453c790 commit e920dbe

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

Prompts/Feedback Analyzer

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Perform sentimental analysis from the given list of sentiments and return the feedback as Negative or Positive. The list of `Sentiments` will be seperated by new lines. `Create a report depicting the percentage of positive and negative opinions` and recommend the user based on type of the feedback. Always return the response in `JSON format`.
2+
Sentiments:
3+
Xanadu release has most exciting features
4+
Servicenow IDE is the top feature
5+
It the biggest AI release from Servicenow so far.
6+
IDE does not provide recommendations of Glide APIs which developers may not find helpful
7+
Custom Skill enables developers to create their own prompts.
8+
Now Assist and IDE are not availble on PDIS which is a big drwback to developers where they cannot explore them
9+
10+
Example Output:
11+
{
12+
"Sentiment Analysis Report": {
13+
"Sentiments Analyzed": [
14+
"Xanadu release has most exciting features",
15+
"Servicenow IDE is the top feature",
16+
"It the biggest AI release from Servicenow so far.",
17+
"IDE does not provide recommendations of Glide APIs which developers may not find helpful",
18+
"Custom Skill enables developers to create their own prompts.",
19+
"Now Assist and IDE are not available on PDIS which is a big drawback to developers where they cannot explore them"
20+
],
21+
"Results": {
22+
"Positive Feedback": "66.67%",
23+
"Negative Feedback": "33.33%"
24+
},
25+
"Recommendation": "The overall sentiment is mostly positive, with users praising features such as Xanadu and the Servicenow IDE. However, some users expressed concerns about the lack of Glide API recommendations and the unavailability of Now Assist and IDE on PDIS. It is recommended to address these issues to enhance the developer experience and maintain overall user satisfaction."
26+
}
27+
}

0 commit comments

Comments
 (0)