Skip to content

Commit

Permalink
Added documentation to ModelType.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
markjamesm committed Dec 17, 2023
1 parent 201cd22 commit beb7250
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/Models/ModelType.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
namespace MistralSharp.Models
{
public sealed class ModelType
/// <summary>
/// This class defines the available models on the Mistral AI platform.
/// </summary>
public static class ModelType
{
// Embedding models enable retrieval and retrieval-augmented generation applications.
// Embedding models enable retrieval and retrieval-augmented generation (RAG) applications.
public static string MistralEmbed => "mistral-embed";

// This generative endpoint is best used for large batch processing tasks where cost is a significant factor but reasoning capabilities are not crucial.
// This generative endpoint is best used for large batch processing tasks where cost is a significant factor
// but reasoning capabilities are not crucial.
public static string MistralTiny => "mistral-tiny";

// Higher reasoning capabilities and more capabilities.
Expand Down

0 comments on commit beb7250

Please sign in to comment.