KMAIServerConfig.swift 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. // return "http://101.132.103.13:8030"
  20. }
  21. #else
  22. //正式服务器
  23. return "https://api-server.compdf.com"
  24. #endif
  25. }
  26. }
  27. var aiRewritingURL: String {
  28. get {
  29. #if DEBUG
  30. if self.isDebug {
  31. //测试服务器
  32. return "http://api-us-east-1.compdf.com:8082"
  33. } else {
  34. //正式服务器
  35. return "https://ai.compdf.com"
  36. }
  37. #else
  38. //正式服务器
  39. return "https://ai.compdf.com"
  40. #endif
  41. }
  42. }
  43. }