diff --git a/app/MindWork AI Studio/Provider/Fireworks/TextMessage.cs b/app/MindWork AI Studio/Provider/Fireworks/TextMessage.cs deleted file mode 100644 index 36340b0f..00000000 --- a/app/MindWork AI Studio/Provider/Fireworks/TextMessage.cs +++ /dev/null @@ -1,13 +0,0 @@ -namespace AIStudio.Provider.Fireworks; - -/// -/// Chat message model. -/// -/// The text content of the message. -/// The role of the message. -public record TextMessage(string Content, string Role) : IMessage -{ - public TextMessage() : this(string.Empty, string.Empty) - { - } -} \ No newline at end of file diff --git a/app/MindWork AI Studio/Provider/Mistral/TextMessage.cs b/app/MindWork AI Studio/Provider/Mistral/TextMessage.cs deleted file mode 100644 index 9606a9d8..00000000 --- a/app/MindWork AI Studio/Provider/Mistral/TextMessage.cs +++ /dev/null @@ -1,13 +0,0 @@ -namespace AIStudio.Provider.Mistral; - -/// -/// Text chat message model. -/// -/// The text content of the message. -/// The role of the message. -public record TextMessage(string Content, string Role) : IMessage -{ - public TextMessage() : this(string.Empty, string.Empty) - { - } -} \ No newline at end of file diff --git a/app/MindWork AI Studio/Provider/SelfHosted/TextMessage.cs b/app/MindWork AI Studio/Provider/SelfHosted/TextMessage.cs deleted file mode 100644 index 1479257d..00000000 --- a/app/MindWork AI Studio/Provider/SelfHosted/TextMessage.cs +++ /dev/null @@ -1,13 +0,0 @@ -namespace AIStudio.Provider.SelfHosted; - -/// -/// Chat message model. -/// -/// The text content of the message. -/// The role of the message. -public record TextMessage(string Content, string Role) : IMessage -{ - public TextMessage() : this(string.Empty, string.Empty) - { - } -} \ No newline at end of file