SearchModelFactory.ImageServingStatistics Method

Definition

Statistics about image serving during a retrieval activity.

public static Azure.Search.Documents.KnowledgeBases.Models.ImageServingStatistics ImageServingStatistics(int? imagesRetrieved = default, int? imagesSentToModel = default, long? totalImageSizeBytes = default, bool? verbalizationUsed = default);
static member ImageServingStatistics : Nullable<int> * Nullable<int> * Nullable<int64> * Nullable<bool> -> Azure.Search.Documents.KnowledgeBases.Models.ImageServingStatistics
Public Shared Function ImageServingStatistics (Optional imagesRetrieved As Nullable(Of Integer) = Nothing, Optional imagesSentToModel As Nullable(Of Integer) = Nothing, Optional totalImageSizeBytes As Nullable(Of Long) = Nothing, Optional verbalizationUsed As Nullable(Of Boolean) = Nothing) As ImageServingStatistics

Parameters

imagesRetrieved
Nullable<Int32>

The number of images retrieved from the asset store.

imagesSentToModel
Nullable<Int32>

The number of images sent to the downstream model.

totalImageSizeBytes
Nullable<Int64>

The total size in bytes of images sent to the model.

verbalizationUsed
Nullable<Boolean>

Indicates whether image verbalization was used instead of direct image serving.

Returns

A new ImageServingStatistics instance for mocking.

Applies to