Is there an existing issue for this?
Describe the bug
I have an app at https://github.com/thangchung/coffeeshop-agent. After upgrading to .NET Aspire 9.5, everything is working. But when I run the chatbox:
It looks great, the trace shows me that it can work correctly with the LLM model:
But when I followed the guidance at https://learn.microsoft.com/en-us/dotnet/aspire/whats-new/dotnet-aspire-9.5#generative-ai-visualizer. I clicked on the a sparkle (✨) icon appears next to its name in the Traces view. I got the exception:
I used Semantic Kernel and enabled AppContext.SetSwitch("Microsoft.SemanticKernel.Experimental.GenAI.EnableOTelDiagnosticsSensitive", true); https://github.com/thangchung/coffeeshop-agent/blob/main/src/CounterService/Program.cs#L20. I saw that SK has already added OTel GenAI semantic conventions as microsoft/semantic-kernel#12262 and microsoft/semantic-kernel#12285
The exception logs:
Aspire.Hosting.Dashboard.Microsoft.AspNetCore.Components.Server.Circuits.CircuitHost: Error: Unhandled exception in circuit 'lXi4OLhw_WDRSGoquYqSmpkDwkXnR4sap85Mkr4B3OM'.
System.Text.Json.JsonException: 'C' is an invalid start of a value. Path: $.name | LineNumber: 0 | BytePositionInLine: 6221.
---> System.Text.Json.JsonReaderException: 'C' is an invalid start of a value. LineNumber: 0 | BytePositionInLine: 6221.
at System.Text.Json.ThrowHelper.ThrowJsonReaderException(Utf8JsonReader& json, ExceptionResource resource, Byte nextByte, ReadOnlySpan`1 bytes)
at System.Text.Json.Utf8JsonReader.ConsumeValue(Byte marker)
at System.Text.Json.Utf8JsonReader.ReadSingleSegment()
at System.Text.Json.Utf8JsonReader.Read()
at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value)
at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, T& value, JsonSerializerOptions options, ReadStack& state)
--- End of inner exception stack trace ---
at System.Text.Json.ThrowHelper.ReThrowWithPath(ReadStack& state, JsonReaderException ex)
at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, T& value, JsonSerializerOptions options, ReadStack& state)
at System.Text.Json.JsonSerializer.ReadFromSpan[TValue](ReadOnlySpan`1 utf8Json, JsonTypeInfo`1 jsonTypeInfo, Nullable`1 actualByteCount)
at System.Text.Json.JsonSerializer.ReadFromSpan[TValue](ReadOnlySpan`1 json, JsonTypeInfo`1 jsonTypeInfo)
at System.Text.Json.JsonSerializer.Deserialize[TValue](String json, JsonTypeInfo`1 jsonTypeInfo)
at Aspire.Dashboard.Model.GenAI.GenAIVisualizerDialogViewModel.DeserializeBody(GenAIItemType type, String message) in /_/src/Aspire.Dashboard/Model/GenAI/GenAIVisualizerDialogViewModel.cs:line 245
at Aspire.Dashboard.Model.GenAI.GenAIVisualizerDialogViewModel.CreateMessages(GenAIVisualizerDialogViewModel viewModel, TelemetryRepository telemetryRepository) in /_/src/Aspire.Dashboard/Model/GenAI/GenAIVisualizerDialogViewModel.cs:line 197
at Aspire.Dashboard.Model.GenAI.GenAIVisualizerDialogViewModel.Create(SpanDetailsViewModel spanDetailsViewModel, Nullable`1 selectedLogEntryId, TelemetryRepository telemetryRepository, Func`1 getContextGenAISpans) in /_/src/Aspire.Dashboard/Model/GenAI/GenAIVisualizerDialogViewModel.cs:line 70
at Aspire.Dashboard.Components.Dialogs.GenAIVisualizerDialog.OpenDialogAsync(ViewportInformation viewportInformation, IDialogService dialogService, IStringLocalizer`1 dialogsLoc, OtlpSpan span, Nullable`1 selectedLogEntryId, TelemetryRepository telemetryRepository, List`1 resources, Func`1 getContextGenAISpans) in /_/src/Aspire.Dashboard/Components/Dialogs/GenAIVisualizerDialog.razor.cs:line 232
at Aspire.Dashboard.Components.Pages.TraceDetail.OnGenAIClickedAsync(OtlpSpan span) in /_/src/Aspire.Dashboard/Components/Pages/TraceDetail.razor.cs:line 545
at Microsoft.AspNetCore.Components.ComponentBase.CallStateHasChangedOnAsyncCompletion(Task task)
at Microsoft.FluentUI.AspNetCore.Components.FluentButton.OnClickHandlerAsync(MouseEventArgs e) in /_/src/Core/Components/Button/FluentButton.razor.cs:line 233
at Microsoft.AspNetCore.Components.ComponentBase.CallStateHasChangedOnAsyncCompletion(Task task)
at Microsoft.AspNetCore.Components.RenderTree.Renderer.GetErrorHandledTask(Task taskToHandle, ComponentState owningComponentState)
Expected Behavior
I expected it to show me the pop-up just like the description at https://learn.microsoft.com/en-us/dotnet/aspire/whats-new/dotnet-aspire-9.5#generative-ai-visualizer
Steps To Reproduce
It has already been described above.
Exceptions (if any)
Aspire.Hosting.Dashboard.Microsoft.AspNetCore.Components.Server.Circuits.CircuitHost: Error: Unhandled exception in circuit 'lXi4OLhw_WDRSGoquYqSmpkDwkXnR4sap85Mkr4B3OM'.
System.Text.Json.JsonException: 'C' is an invalid start of a value. Path: $.name | LineNumber: 0 | BytePositionInLine: 6221.
---> System.Text.Json.JsonReaderException: 'C' is an invalid start of a value. LineNumber: 0 | BytePositionInLine: 6221.
at System.Text.Json.ThrowHelper.ThrowJsonReaderException(Utf8JsonReader& json, ExceptionResource resource, Byte nextByte, ReadOnlySpan`1 bytes)
at System.Text.Json.Utf8JsonReader.ConsumeValue(Byte marker)
at System.Text.Json.Utf8JsonReader.ReadSingleSegment()
at System.Text.Json.Utf8JsonReader.Read()
at System.Text.Json.Serialization.Converters.ObjectDefaultConverter`1.OnTryRead(Utf8JsonReader& reader, Type typeToConvert, JsonSerializerOptions options, ReadStack& state, T& value)
at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, T& value, JsonSerializerOptions options, ReadStack& state)
--- End of inner exception stack trace ---
at System.Text.Json.ThrowHelper.ReThrowWithPath(ReadStack& state, JsonReaderException ex)
at System.Text.Json.Serialization.JsonConverter`1.ReadCore(Utf8JsonReader& reader, T& value, JsonSerializerOptions options, ReadStack& state)
at System.Text.Json.JsonSerializer.ReadFromSpan[TValue](ReadOnlySpan`1 utf8Json, JsonTypeInfo`1 jsonTypeInfo, Nullable`1 actualByteCount)
at System.Text.Json.JsonSerializer.ReadFromSpan[TValue](ReadOnlySpan`1 json, JsonTypeInfo`1 jsonTypeInfo)
at System.Text.Json.JsonSerializer.Deserialize[TValue](String json, JsonTypeInfo`1 jsonTypeInfo)
at Aspire.Dashboard.Model.GenAI.GenAIVisualizerDialogViewModel.DeserializeBody(GenAIItemType type, String message) in /_/src/Aspire.Dashboard/Model/GenAI/GenAIVisualizerDialogViewModel.cs:line 245
at Aspire.Dashboard.Model.GenAI.GenAIVisualizerDialogViewModel.CreateMessages(GenAIVisualizerDialogViewModel viewModel, TelemetryRepository telemetryRepository) in /_/src/Aspire.Dashboard/Model/GenAI/GenAIVisualizerDialogViewModel.cs:line 197
at Aspire.Dashboard.Model.GenAI.GenAIVisualizerDialogViewModel.Create(SpanDetailsViewModel spanDetailsViewModel, Nullable`1 selectedLogEntryId, TelemetryRepository telemetryRepository, Func`1 getContextGenAISpans) in /_/src/Aspire.Dashboard/Model/GenAI/GenAIVisualizerDialogViewModel.cs:line 70
at Aspire.Dashboard.Components.Dialogs.GenAIVisualizerDialog.OpenDialogAsync(ViewportInformation viewportInformation, IDialogService dialogService, IStringLocalizer`1 dialogsLoc, OtlpSpan span, Nullable`1 selectedLogEntryId, TelemetryRepository telemetryRepository, List`1 resources, Func`1 getContextGenAISpans) in /_/src/Aspire.Dashboard/Components/Dialogs/GenAIVisualizerDialog.razor.cs:line 232
at Aspire.Dashboard.Components.Pages.TraceDetail.OnGenAIClickedAsync(OtlpSpan span) in /_/src/Aspire.Dashboard/Components/Pages/TraceDetail.razor.cs:line 545
at Microsoft.AspNetCore.Components.ComponentBase.CallStateHasChangedOnAsyncCompletion(Task task)
at Microsoft.FluentUI.AspNetCore.Components.FluentButton.OnClickHandlerAsync(MouseEventArgs e) in /_/src/Core/Components/Button/FluentButton.razor.cs:line 233
at Microsoft.AspNetCore.Components.ComponentBase.CallStateHasChangedOnAsyncCompletion(Task task)
at Microsoft.AspNetCore.Components.RenderTree.Renderer.GetErrorHandledTask(Task taskToHandle, ComponentState owningComponentState)
.NET Version info
10.0.100-rc.1.25451.107 [C:\Program Files\dotnet\sdk]
Anything else?
Is there an existing issue for this?
Describe the bug
I have an app at https://github.com/thangchung/coffeeshop-agent. After upgrading to .NET Aspire 9.5, everything is working. But when I run the chatbox:
It looks great, the trace shows me that it can work correctly with the LLM model:
But when I followed the guidance at https://learn.microsoft.com/en-us/dotnet/aspire/whats-new/dotnet-aspire-9.5#generative-ai-visualizer. I clicked on the
a sparkle (✨) icon appears next to its name in the Traces view. I got the exception:I used
Semantic Kerneland enabledAppContext.SetSwitch("Microsoft.SemanticKernel.Experimental.GenAI.EnableOTelDiagnosticsSensitive", true);https://github.com/thangchung/coffeeshop-agent/blob/main/src/CounterService/Program.cs#L20. I saw that SK has already addedOTel GenAI semantic conventionsas microsoft/semantic-kernel#12262 and microsoft/semantic-kernel#12285The exception logs:
Expected Behavior
I expected it to show me the pop-up just like the description at https://learn.microsoft.com/en-us/dotnet/aspire/whats-new/dotnet-aspire-9.5#generative-ai-visualizer
Steps To Reproduce
It has already been described above.
Exceptions (if any)
.NET Version info
10.0.100-rc.1.25451.107 [C:\Program Files\dotnet\sdk]
Anything else?