Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add May Preview And May GA changes for Analyze ConversationsAurghob/convmaypreview ga #28841

Merged
merged 16 commits into from
May 8, 2024
Merged
Prev Previous commit
Next Next commit
Fix compile error and add compiled swagger json
  • Loading branch information
Aurgho Bhattacharjee committed Apr 25, 2024
commit a490d3e7c5d935397ff73cef769280c9ee47458c
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,17 @@ model ConversationSummarizationTaskParameters is PreBuiltTaskParameters {
/** Supported parameters for a custom conversation summarization task. */
@added(Versions.v2024_05_15_preview)
model CustomConversationSummarizationTaskParameters is CustomTaskParameters {
...ConversationSummarizationTaskParametersBase;
/** It controls the approximate number of sentences in the output summaries. */
sentenceCount?: int32;

/** String index type */
stringIndexType?: StringIndexType = StringIndexType.TextElements_v8;

/** (NOTE: Recommended to use summaryLength over sentenceCount) Controls the approximate length of the output summaries. */
aurghob marked this conversation as resolved.
Show resolved Hide resolved
summaryLength?: SummaryLengthBucket;

/** Array of Summary Aspects */
summaryAspects: Array<SummaryAspect>;
}

/** Supported parameters for a conversational summarization task. */
Expand Down
Loading
Loading