2023-09-18 08:35:02 +00:00
|
|
|
namespace BotSharp.Plugin.HuggingFace.DataModels;
|
|
|
|
|
|
|
|
|
|
public class InferenceInputOptions
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("use_cache")]
|
|
|
|
|
public bool UseCache { get; set; } = true;
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("wait_for_model")]
|
2024-01-16 17:38:45 +00:00
|
|
|
public bool WaitForModel { get; set; } = true;
|
2023-09-18 08:35:02 +00:00
|
|
|
}
|