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.

SessionConfig.cs 446 B

1234567891011121314
  1. namespace LLama.Web.Common
  2. {
  3. public class SessionConfig : ISessionConfig
  4. {
  5. public string Model { get; set; }
  6. public string Prompt { get; set; }
  7. public string AntiPrompt { get; set; }
  8. public List<string> AntiPrompts { get; set; }
  9. public string OutputFilter { get; set; }
  10. public List<string> OutputFilters { get; set; }
  11. public LLamaExecutorType ExecutorType { get; set; }
  12. }
  13. }