midjourney.go 369 B

123456789101112131415161718
  1. package constant
  2. const (
  3. MjErrorUnknown = 5
  4. MjRequestError = 4
  5. )
  6. const (
  7. MjActionImagine = "IMAGINE"
  8. MjActionDescribe = "DESCRIBE"
  9. MjActionBlend = "BLEND"
  10. MjActionUpscale = "UPSCALE"
  11. MjActionVariation = "VARIATION"
  12. MjActionInPaint = "INPAINT"
  13. MjActionInPaintPre = "INPAINT_PRE"
  14. MjActionZoom = "ZOOM"
  15. MjActionShorten = "SHORTEN"
  16. )