Replaced provider specific text message data models by the OpenAI data model

This commit is contained in:
Thorsten Sommer 2025-12-28 20:08:31 +01:00
parent e775d65ae3
commit 633ed622a3
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
3 changed files with 0 additions and 39 deletions

View File

@ -1,13 +0,0 @@
namespace AIStudio.Provider.Fireworks;
/// <summary>
/// Chat message model.
/// </summary>
/// <param name="Content">The text content of the message.</param>
/// <param name="Role">The role of the message.</param>
public record TextMessage(string Content, string Role) : IMessage<string>
{
public TextMessage() : this(string.Empty, string.Empty)
{
}
}

View File

@ -1,13 +0,0 @@
namespace AIStudio.Provider.Mistral;
/// <summary>
/// Text chat message model.
/// </summary>
/// <param name="Content">The text content of the message.</param>
/// <param name="Role">The role of the message.</param>
public record TextMessage(string Content, string Role) : IMessage<string>
{
public TextMessage() : this(string.Empty, string.Empty)
{
}
}

View File

@ -1,13 +0,0 @@
namespace AIStudio.Provider.SelfHosted;
/// <summary>
/// Chat message model.
/// </summary>
/// <param name="Content">The text content of the message.</param>
/// <param name="Role">The role of the message.</param>
public record TextMessage(string Content, string Role) : IMessage<string>
{
public TextMessage() : this(string.Empty, string.Empty)
{
}
}