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.

ISessionConfig.cs 383 B

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