KMAIServerConfig.swift 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // KMAIServerConfig.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by wanjun on 2023/5/22.
  6. //
  7. import Cocoa
  8. class KMAIServerConfig: NSObject {
  9. var isDebug: Bool = true
  10. var aiTranslationURL: String {
  11. get {
  12. #if DEBUG
  13. if self.isDebug {
  14. //测试服务器
  15. return "http://101.132.103.13:8030"
  16. } else {
  17. //正式服务器
  18. return "https://api-server.compdf.com"
  19. }
  20. #else
  21. //正式服务器
  22. return "https://api-server.compdf.com"
  23. #endif
  24. }
  25. }
  26. var aiRewritingURL: String {
  27. get {
  28. #if DEBUG
  29. if self.isDebug {
  30. //测试服务器
  31. return "http://api-us-east-1.compdf.com:8082"
  32. } else {
  33. //正式服务器
  34. return "https://ai.compdf.com"
  35. }
  36. #else
  37. //正式服务器
  38. return "https://ai.compdf.com"
  39. #endif
  40. }
  41. }
  42. }