ContentUnderstandingModelFactory.AnalyzeUsageDetails Method

Definition

Creates a new AnalyzeUsageDetails for mocking.

public static Azure.AI.ContentUnderstanding.AnalyzeUsageDetails AnalyzeUsageDetails(int? documentPagesMinimal = default, int? documentPagesBasic = default, int? documentPagesStandard = default, float? audioHours = default, float? videoHours = default, int? contextualizationTokens = default, System.Collections.Generic.IDictionary<string,int>? tokens = default);
static member AnalyzeUsageDetails : Nullable<int> * Nullable<int> * Nullable<int> * Nullable<single> * Nullable<single> * Nullable<int> * System.Collections.Generic.IDictionary<string, int> -> Azure.AI.ContentUnderstanding.AnalyzeUsageDetails
Public Shared Function AnalyzeUsageDetails (Optional documentPagesMinimal As Nullable(Of Integer) = Nothing, Optional documentPagesBasic As Nullable(Of Integer) = Nothing, Optional documentPagesStandard As Nullable(Of Integer) = Nothing, Optional audioHours As Nullable(Of Single) = Nothing, Optional videoHours As Nullable(Of Single) = Nothing, Optional contextualizationTokens As Nullable(Of Integer) = Nothing, Optional tokens As IDictionary(Of String, Integer) = Nothing) As AnalyzeUsageDetails

Parameters

documentPagesMinimal
Nullable<Int32>

The number of document pages processed at the minimal level.

documentPagesBasic
Nullable<Int32>

The number of document pages processed at the basic level.

documentPagesStandard
Nullable<Int32>

The number of document pages processed at the standard level.

audioHours
Nullable<Single>

The hours of audio processed.

videoHours
Nullable<Single>

The hours of video processed.

contextualizationTokens
Nullable<Int32>

The number of contextualization tokens consumed.

tokens
IDictionary<String,Int32>

The number of LLM and embedding tokens consumed, grouped by model and type.

Returns

A new AnalyzeUsageDetails instance for mocking.

Applies to