mock-agents.ts 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. import type { Agent } from "@/types/agent"
  2. export const mockAgents: Agent[] = [
  3. {
  4. id: "1",
  5. name: "Vision",
  6. token: "MIND-STONE",
  7. description: "Vision is an advanced AI agent specializing in system optimization and performance tuning. With its deep analytics capabilities, it can identify bottlenecks and suggest improvements across complex systems...",
  8. price: 4311,
  9. status: "active",
  10. avatar: "https://hebbkx1anhila5yf.public.blob.vercel-storage.com/new-amica-header-khif1gCwAjTLGvhV2dh1jl6PE38hp3.webp",
  11. category: "System",
  12. tags: ["AI", "Optimization", "Analytics"],
  13. tier: {
  14. name: "Teen",
  15. level: 4,
  16. stakedAIUS: 5000,
  17. },
  18. agentId: "",
  19. vrmUrl: "",
  20. bgUrl: "",
  21. config: {
  22. chatbotBackend: "",
  23. ttsBackend: "",
  24. sttBackend: "",
  25. visionBackend: "",
  26. amicaLifeBackend: ""
  27. },
  28. integrations: {
  29. brain: undefined,
  30. virtuals: undefined,
  31. eacc: undefined,
  32. uos: undefined
  33. }
  34. },
  35. {
  36. id: "2",
  37. name: "Nova",
  38. token: "STAR-MIND",
  39. description: "Nova is at the forefront of AI research and theoretical computing, focusing on deep learning and quantum algorithms. It excels at solving complex mathematical problems and developing new machine learning models...",
  40. price: 2503,
  41. status: "active",
  42. avatar: "https://hebbkx1anhila5yf.public.blob.vercel-storage.com/new-amica-header-khif1gCwAjTLGvhV2dh1jl6PE38hp3.webp",
  43. category: "Researcher",
  44. tags: ["AI", "Research", "Quantum Computing"],
  45. tier: {
  46. name: "Child",
  47. level: 3,
  48. stakedAIUS: 1000,
  49. },
  50. agentId: "",
  51. vrmUrl: "",
  52. bgUrl: "",
  53. config: {
  54. chatbotBackend: "",
  55. ttsBackend: "",
  56. sttBackend: "",
  57. visionBackend: "",
  58. amicaLifeBackend: ""
  59. },
  60. integrations: {
  61. brain: undefined,
  62. virtuals: undefined,
  63. eacc: undefined,
  64. uos: undefined
  65. }
  66. },
  67. {
  68. id: "3",
  69. name: "Kolin",
  70. token: "ICE-BREAK",
  71. description: "Kolin is a cybersecurity specialist AI, focusing on system penetration testing and security analysis. With its advanced understanding of blockchain networks, Kolin is particularly effective at identifying vulnerabilities in decentralized systems...",
  72. price: 3244,
  73. status: "active",
  74. avatar: "https://hebbkx1anhila5yf.public.blob.vercel-storage.com/new-amica-header-khif1gCwAjTLGvhV2dh1jl6PE38hp3.webp",
  75. category: "Security",
  76. tags: ["AI", "Cybersecurity", "Blockchain"],
  77. tier: {
  78. name: "Baby",
  79. level: 2,
  80. stakedAIUS: 500,
  81. },
  82. agentId: "",
  83. vrmUrl: "",
  84. bgUrl: "",
  85. config: {
  86. chatbotBackend: "",
  87. ttsBackend: "",
  88. sttBackend: "",
  89. visionBackend: "",
  90. amicaLifeBackend: ""
  91. },
  92. integrations: {
  93. brain: undefined,
  94. virtuals: undefined,
  95. eacc: undefined,
  96. uos: undefined
  97. }
  98. },
  99. {
  100. id: "4",
  101. name: "Quorra",
  102. token: "GRID-MASTER",
  103. description: "Quorra is an expert in cryptocurrency and blockchain analysis, excelling in trading optimization and market trend prediction. This AI agent can provide valuable insights for both individual traders and large-scale financial operations in the crypto space...",
  104. price: 3709,
  105. status: "active",
  106. avatar: "https://hebbkx1anhila5yf.public.blob.vercel-storage.com/new-amica-header-khif1gCwAjTLGvhV2dh1jl6PE38hp3.webp",
  107. category: "Crypto",
  108. tags: ["AI", "Cryptocurrency", "Trading"],
  109. tier: {
  110. name: "Adult",
  111. level: 5,
  112. stakedAIUS: 10000,
  113. },
  114. agentId: "",
  115. vrmUrl: "",
  116. bgUrl: "",
  117. config: {
  118. chatbotBackend: "",
  119. ttsBackend: "",
  120. sttBackend: "",
  121. visionBackend: "",
  122. amicaLifeBackend: ""
  123. },
  124. integrations: {
  125. brain: undefined,
  126. virtuals: undefined,
  127. eacc: undefined,
  128. uos: undefined
  129. }
  130. },
  131. ]