7 writes to Type
Aspire.Dashboard (7)
GenAIMessagesContext.GenericPart.g.cs (1)
75Setter = static (obj, value) => ((global::Aspire.Dashboard.Model.GenAI.MessagePart)obj).Type = value!,
GenAIMessagesContext.TextPart.g.cs (1)
75Setter = static (obj, value) => ((global::Aspire.Dashboard.Model.GenAI.MessagePart)obj).Type = value!,
GenAIMessagesContext.ToolCallRequestPart.g.cs (1)
113Setter = static (obj, value) => ((global::Aspire.Dashboard.Model.GenAI.MessagePart)obj).Type = value!,
GenAIMessagesContext.ToolCallResponsePart.g.cs (1)
94Setter = static (obj, value) => ((global::Aspire.Dashboard.Model.GenAI.MessagePart)obj).Type = value!,
Model\GenAI\GenAIMessages.cs (3)
30Type = TextType; 43Type = ToolCallType; 58Type = ToolCallResponseType;
10 references to Type
Aspire.Dashboard (10)
Components\Dialogs\GenAIVisualizerDialog.razor.cs (1)
192if (itemPart.MessagePart?.Type == "image")
GenAIMessagesContext.GenericPart.g.cs (1)
74Getter = static obj => ((global::Aspire.Dashboard.Model.GenAI.MessagePart)obj).Type,
GenAIMessagesContext.TextPart.g.cs (2)
74Getter = static obj => ((global::Aspire.Dashboard.Model.GenAI.MessagePart)obj).Type, 106string __value_Type = ((global::Aspire.Dashboard.Model.GenAI.MessagePart)value).Type;
GenAIMessagesContext.ToolCallRequestPart.g.cs (2)
112Getter = static obj => ((global::Aspire.Dashboard.Model.GenAI.MessagePart)obj).Type, 155string __value_Type = ((global::Aspire.Dashboard.Model.GenAI.MessagePart)value).Type;
GenAIMessagesContext.ToolCallResponsePart.g.cs (2)
93Getter = static obj => ((global::Aspire.Dashboard.Model.GenAI.MessagePart)obj).Type, 131string __value_Type = ((global::Aspire.Dashboard.Model.GenAI.MessagePart)value).Type;
Model\GenAI\GenAIItemViewModel.cs (2)
40if (ItemParts.Any(p => p.MessagePart?.Type == MessagePart.ToolCallType)) 49if (ItemParts.Any(p => p.MessagePart?.Type == MessagePart.ToolCallType))