Now Assist Summarization shows [object Object] in the detailsIssue When summarizing a record, the summarization details are not displayed correctly, instead showing '[object Object]' ReleasePlatform AI Agents and Skills CauseThe utilised Now Assist Skill might be customised which returns a JSON array for the information. The OOB TaskSummarize script include does not expect a nested JSON Object. Therefore, it tries to convert the entire JSON Object into a string and prints it.ResolutionModify skill the ensure that the item is represented as a comma-separated string with labels and values instead of a JSON object.For example modification for SLA informationEach SLA item should be represented as a comma separated String with Label and value instead a JSON ObjectAfter making this change, test the skill to ensure it returns an array of strings for the information. This should allow the TaskSummarize script include to handle the SLA details correctly and display them in the summarization.