2023-09-18 08:35:02 +00:00
|
|
|
namespace BotSharp.Plugin.HuggingFace.DataModels;
|
|
|
|
|
|
|
|
|
|
public class InferenceInputParameters
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("temperature")]
|
2024-01-16 17:38:45 +00:00
|
|
|
public float Temperature { get; set; } = 0.7f;
|
2023-09-18 08:35:02 +00:00
|
|
|
|
|
|
|
|
[JsonPropertyName("max_new_tokens")]
|
2024-01-16 17:38:45 +00:00
|
|
|
public int MaxNewTokens { get; set; } = 128;
|
2023-09-18 08:35:02 +00:00
|
|
|
|
|
|
|
|
[JsonPropertyName("return_full_text")]
|
|
|
|
|
public bool ReturnFullText { get; set; } = false;
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("num_return_sequences")]
|
|
|
|
|
public int NumReturnSequences { get; set; } = 1;
|
|
|
|
|
}
|