Add a [DebuggerDisplay] to GeneratedEmbeddings (#5657)

This commit is contained in:
Stephen Toub 2024-11-18 07:44:10 -05:00 коммит произвёл GitHub
Родитель 2977765f23
Коммит 475f317bc5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -3,12 +3,14 @@
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using Microsoft.Shared.Diagnostics;
namespace Microsoft.Extensions.AI;
/// <summary>Represents the result of an operation to generate embeddings.</summary>
/// <typeparam name="TEmbedding">Specifies the type of the generated embeddings.</typeparam>
[DebuggerDisplay("Count = {Count}")]
public sealed class GeneratedEmbeddings<TEmbedding> : IList<TEmbedding>, IReadOnlyList<TEmbedding>
where TEmbedding : Embedding
{