Fixed warnings

This commit is contained in:
Thorsten Sommer 2024-07-01 20:07:29 +02:00
parent 32d421dde4
commit c86a9e32c1
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -1,5 +1,3 @@
using System.ComponentModel.DataAnnotations;
namespace AIStudio.Provider.Mistral; namespace AIStudio.Provider.Mistral;
/// <summary> /// <summary>
@ -8,7 +6,7 @@ namespace AIStudio.Provider.Mistral;
/// <param name="Model">Which model to use for chat completion.</param> /// <param name="Model">Which model to use for chat completion.</param>
/// <param name="Messages">The chat messages.</param> /// <param name="Messages">The chat messages.</param>
/// <param name="Stream">Whether to stream the chat completion.</param> /// <param name="Stream">Whether to stream the chat completion.</param>
/// <param name="Seed">The seed for the chat completion.</param> /// <param name="RandomSeed">The seed for the chat completion.</param>
/// <param name="SafePrompt">Whether to inject a safety prompt before all conversations.</param> /// <param name="SafePrompt">Whether to inject a safety prompt before all conversations.</param>
public readonly record struct ChatRequest( public readonly record struct ChatRequest(
string Model, string Model,