midjourney.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package constant
  2. var MjNotifyEnabled = false
  3. var MjAccountFilterEnabled = false
  4. var MjModeClearEnabled = false
  5. var MjForwardUrlEnabled = true
  6. const (
  7. MjErrorUnknown = 5
  8. MjRequestError = 4
  9. )
  10. const (
  11. MjActionImagine = "IMAGINE"
  12. MjActionDescribe = "DESCRIBE"
  13. MjActionBlend = "BLEND"
  14. MjActionUpscale = "UPSCALE"
  15. MjActionVariation = "VARIATION"
  16. MjActionReRoll = "REROLL"
  17. MjActionInPaint = "INPAINT"
  18. MjActionModal = "MODAL"
  19. MjActionZoom = "ZOOM"
  20. MjActionCustomZoom = "CUSTOM_ZOOM"
  21. MjActionShorten = "SHORTEN"
  22. MjActionHighVariation = "HIGH_VARIATION"
  23. MjActionLowVariation = "LOW_VARIATION"
  24. MjActionPan = "PAN"
  25. MjActionSwapFace = "SWAP_FACE"
  26. )
  27. var MidjourneyModel2Action = map[string]string{
  28. "mj_imagine": MjActionImagine,
  29. "mj_describe": MjActionDescribe,
  30. "mj_blend": MjActionBlend,
  31. "mj_upscale": MjActionUpscale,
  32. "mj_variation": MjActionVariation,
  33. "mj_reroll": MjActionReRoll,
  34. "mj_modal": MjActionModal,
  35. "mj_inpaint": MjActionInPaint,
  36. "mj_zoom": MjActionZoom,
  37. "mj_custom_zoom": MjActionCustomZoom,
  38. "mj_shorten": MjActionShorten,
  39. "mj_high_variation": MjActionHighVariation,
  40. "mj_low_variation": MjActionLowVariation,
  41. "mj_pan": MjActionPan,
  42. "swap_face": MjActionSwapFace,
  43. }