You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ModelOptions.cs 333 B

123456789101112131415
  1. using LLama.Common;
  2. namespace LLama.Web.Common
  3. {
  4. public class ModelOptions : ModelParams
  5. {
  6. public ModelOptions() : base("", 512, 20, 1337, true, true, false, false, "", "", -1, 512, false, false)
  7. {
  8. }
  9. public string Name { get; set; }
  10. public int MaxInstances { get; set; }
  11. }
  12. }