Skip to content
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using Microsoft.SemanticKernel.ChatCompletion;
using Microsoft.SemanticKernel.Connectors.Google.Core;

Expand All @@ -13,6 +14,12 @@ namespace Microsoft.SemanticKernel.Connectors.Google;
/// </summary>
public sealed class GeminiChatMessageContent : ChatMessageContent
{
/// <summary>
/// Creates a new instance of the <see cref="GeminiChatMessageContent"/> class
/// </summary>
[JsonConstructor]
public GeminiChatMessageContent() {}

/// <summary>
/// Initializes a new instance of the <see cref="GeminiChatMessageContent"/> class.
/// </summary>
Expand Down