Skip to content
Merged
Prev Previous commit
Next Next commit
removing sentiment
  • Loading branch information
osaghaso committed Jun 24, 2024
commit d4b0623c58ef6c3e589c4fd677a603409ae08c06
Original file line number Diff line number Diff line change
Expand Up @@ -1173,13 +1173,10 @@ model AcsMessageAnalysisCompletedEventData extends AcsMessageEventData {
intentAnalysis: string;

/** List of key phrases extracted. */
keyPhraseExtraction: string[];
extractedKeyPhrases: string[];

/** The analysed message language detection. */
languageDetection: AcsMessageLanguageDetection;

/** The analysed message sentiment. */
sentiment: AcsMessageSentiment;
}


Expand Down Expand Up @@ -1279,21 +1276,12 @@ model AcsMessageLanguageDetection {
language: string;

/** The confidence score of the language detected. */
confidenceScore: string;
confidenceScore: float64;

/** The translation of the message. */
translation: string;
}

/** Message Analysis Sentiment */
model AcsMessageSentiment {
/** The score of the analysis. */
score: int32;

/** The description of the analysis. */
description: string;
}

/** Interactive reply kind */
union AcsInteractiveReplyKind {
/** Messaged interactive reply type is ButtonReply */
Expand Down