AI ニジカ綜合
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
428 B

  1. from enum import Enum
  2. class Character (Enum):
  3. DEERJIKA = 1
  4. GOATOH = 2
  5. class GPTModel (Enum):
  6. GPT3_TURBO = 1
  7. GPT4_O = 2
  8. class Platform (Enum):
  9. YOUTUBE = 1
  10. BLUESKY = 2
  11. class QueryType (Enum):
  12. YOUTUBE_COMMENT = 1
  13. BLUESKY_COMMENT = 2
  14. YOUTUBE_SYSTEM = 3
  15. BLUESKY_SYSTEM = 4
  16. KIRIBAN = 5
  17. NICO_REPORT = 6
  18. SNACK_TIME = 7
  19. HOT_SPRING = 8