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.

PromptOptions.cs 310 B

1234567891011
  1. namespace LLama.Web.Common
  2. {
  3. public class PromptOptions
  4. {
  5. public string Name { get; set; }
  6. public string Path { get; set; }
  7. public string Prompt { get; set; }
  8. public List<string> AntiPrompt { get; set; }
  9. public List<string> OutputFilter { get; set; }
  10. }
  11. }