@elizaos/app-core 2.0.0-alpha.73 → 2.0.0-alpha.75

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1143) hide show
  1. package/App.d.ts +5 -0
  2. package/App.d.ts.map +1 -0
  3. package/App.js +220 -0
  4. package/actions/character.d.ts +39 -0
  5. package/actions/character.d.ts.map +1 -0
  6. package/actions/character.js +247 -0
  7. package/actions/chat-helpers.d.ts +47 -0
  8. package/actions/chat-helpers.d.ts.map +1 -0
  9. package/actions/chat-helpers.js +79 -0
  10. package/actions/cloud.d.ts +17 -0
  11. package/actions/cloud.d.ts.map +1 -0
  12. package/actions/cloud.js +43 -0
  13. package/actions/index.d.ts +12 -0
  14. package/actions/index.d.ts.map +1 -0
  15. package/actions/index.js +11 -0
  16. package/actions/lifecycle.d.ts +43 -0
  17. package/actions/lifecycle.d.ts.map +1 -0
  18. package/actions/lifecycle.js +118 -0
  19. package/actions/onboarding.d.ts +12 -0
  20. package/actions/onboarding.d.ts.map +1 -0
  21. package/actions/onboarding.js +26 -0
  22. package/actions/triggers.d.ts +23 -0
  23. package/actions/triggers.d.ts.map +1 -0
  24. package/actions/triggers.js +148 -0
  25. package/api/client.d.ts +2736 -0
  26. package/api/client.d.ts.map +1 -0
  27. package/api/client.js +2492 -0
  28. package/api/index.d.ts +2 -0
  29. package/api/index.d.ts.map +1 -0
  30. package/autonomy/index.d.ts +48 -0
  31. package/autonomy/index.d.ts.map +1 -0
  32. package/autonomy/index.js +330 -0
  33. package/bridge/capacitor-bridge.d.ts +153 -0
  34. package/bridge/capacitor-bridge.d.ts.map +1 -0
  35. package/bridge/capacitor-bridge.js +193 -0
  36. package/bridge/electrobun-rpc.d.ts +28 -0
  37. package/bridge/electrobun-rpc.d.ts.map +1 -0
  38. package/bridge/electrobun-rpc.js +35 -0
  39. package/bridge/electrobun-runtime.d.ts +3 -0
  40. package/bridge/electrobun-runtime.d.ts.map +1 -0
  41. package/bridge/electrobun-runtime.js +17 -0
  42. package/bridge/index.d.ts +6 -0
  43. package/bridge/index.d.ts.map +1 -0
  44. package/bridge/native-plugins.d.ts +82 -0
  45. package/bridge/native-plugins.d.ts.map +1 -0
  46. package/bridge/native-plugins.js +39 -0
  47. package/bridge/plugin-bridge.d.ts +116 -0
  48. package/bridge/plugin-bridge.d.ts.map +1 -0
  49. package/bridge/plugin-bridge.js +203 -0
  50. package/bridge/storage-bridge.d.ts +39 -0
  51. package/bridge/storage-bridge.d.ts.map +1 -0
  52. package/bridge/storage-bridge.js +135 -0
  53. package/chat/index.d.ts +57 -0
  54. package/chat/index.d.ts.map +1 -0
  55. package/chat/index.js +160 -0
  56. package/coding/index.d.ts +25 -0
  57. package/coding/index.d.ts.map +1 -0
  58. package/coding/index.js +25 -0
  59. package/components/AdvancedPageView.d.ts +17 -0
  60. package/components/AdvancedPageView.d.ts.map +1 -0
  61. package/components/AdvancedPageView.js +146 -0
  62. package/components/AgentActivityBox.d.ts +7 -0
  63. package/components/AgentActivityBox.d.ts.map +1 -0
  64. package/components/AgentActivityBox.js +25 -0
  65. package/components/ApiKeyConfig.d.ts +26 -0
  66. package/components/ApiKeyConfig.d.ts.map +1 -0
  67. package/components/ApiKeyConfig.js +119 -0
  68. package/components/AppsPageView.d.ts +7 -0
  69. package/components/AppsPageView.d.ts.map +1 -0
  70. package/components/AppsPageView.js +31 -0
  71. package/components/AppsView.d.ts +8 -0
  72. package/components/AppsView.d.ts.map +1 -0
  73. package/components/AppsView.js +149 -0
  74. package/components/AvatarLoader.d.ts +13 -0
  75. package/components/AvatarLoader.d.ts.map +1 -0
  76. package/components/AvatarLoader.js +53 -0
  77. package/components/AvatarSelector.d.ts +23 -0
  78. package/components/AvatarSelector.d.ts.map +1 -0
  79. package/components/AvatarSelector.js +105 -0
  80. package/components/BscTradePanel.d.ts +22 -0
  81. package/components/BscTradePanel.d.ts.map +1 -0
  82. package/components/BscTradePanel.js +221 -0
  83. package/components/BugReportModal.d.ts +2 -0
  84. package/components/BugReportModal.d.ts.map +1 -0
  85. package/components/BugReportModal.js +219 -0
  86. package/components/CharacterRoster.d.ts +31 -0
  87. package/components/CharacterRoster.d.ts.map +1 -0
  88. package/components/CharacterRoster.js +41 -0
  89. package/components/CharacterView.d.ts +8 -0
  90. package/components/CharacterView.d.ts.map +1 -0
  91. package/components/CharacterView.js +685 -0
  92. package/components/ChatAvatar.d.ts +8 -0
  93. package/components/ChatAvatar.d.ts.map +1 -0
  94. package/components/ChatAvatar.js +89 -0
  95. package/components/ChatComposer.d.ts +37 -0
  96. package/components/ChatComposer.d.ts.map +1 -0
  97. package/components/ChatComposer.js +136 -0
  98. package/components/ChatMessage.d.ts +24 -0
  99. package/components/ChatMessage.d.ts.map +1 -0
  100. package/components/ChatMessage.js +167 -0
  101. package/components/ChatModalView.d.ts +10 -0
  102. package/components/ChatModalView.d.ts.map +1 -0
  103. package/components/ChatModalView.js +57 -0
  104. package/components/ChatView.d.ts +14 -0
  105. package/components/ChatView.d.ts.map +1 -0
  106. package/components/ChatView.js +526 -0
  107. package/components/CloudOnboarding.d.ts +7 -0
  108. package/components/CloudOnboarding.d.ts.map +1 -0
  109. package/components/CloudOnboarding.js +22 -0
  110. package/components/CloudSourceControls.d.ts +13 -0
  111. package/components/CloudSourceControls.d.ts.map +1 -0
  112. package/components/CloudSourceControls.js +16 -0
  113. package/components/CodingAgentSettingsSection.d.ts +2 -0
  114. package/components/CodingAgentSettingsSection.d.ts.map +1 -0
  115. package/components/CodingAgentSettingsSection.js +270 -0
  116. package/components/CommandPalette.d.ts +2 -0
  117. package/components/CommandPalette.d.ts.map +1 -0
  118. package/components/CommandPalette.js +181 -0
  119. package/components/CompanionSceneHost.d.ts +14 -0
  120. package/components/CompanionSceneHost.d.ts.map +1 -0
  121. package/components/CompanionSceneHost.js +360 -0
  122. package/components/CompanionShell.d.ts +17 -0
  123. package/components/CompanionShell.d.ts.map +1 -0
  124. package/components/CompanionShell.js +15 -0
  125. package/components/CompanionView.d.ts +2 -0
  126. package/components/CompanionView.d.ts.map +1 -0
  127. package/components/CompanionView.js +22 -0
  128. package/components/ConfigPageView.d.ts +11 -0
  129. package/components/ConfigPageView.d.ts.map +1 -0
  130. package/components/ConfigPageView.js +303 -0
  131. package/components/ConfigSaveFooter.d.ts +8 -0
  132. package/components/ConfigSaveFooter.d.ts.map +1 -0
  133. package/components/ConfigSaveFooter.js +10 -0
  134. package/components/ConfirmModal.d.ts +61 -0
  135. package/components/ConfirmModal.d.ts.map +1 -0
  136. package/components/ConfirmModal.js +164 -0
  137. package/components/ConnectionFailedBanner.d.ts +6 -0
  138. package/components/ConnectionFailedBanner.d.ts.map +1 -0
  139. package/components/ConnectionFailedBanner.js +22 -0
  140. package/components/ConnectorsPageView.d.ts +7 -0
  141. package/components/ConnectorsPageView.d.ts.map +1 -0
  142. package/components/ConnectorsPageView.js +8 -0
  143. package/components/ConversationsSidebar.d.ts +9 -0
  144. package/components/ConversationsSidebar.d.ts.map +1 -0
  145. package/components/ConversationsSidebar.js +116 -0
  146. package/components/CustomActionEditor.d.ts +10 -0
  147. package/components/CustomActionEditor.d.ts.map +1 -0
  148. package/components/CustomActionEditor.js +578 -0
  149. package/components/CustomActionsPanel.d.ts +9 -0
  150. package/components/CustomActionsPanel.d.ts.map +1 -0
  151. package/components/CustomActionsPanel.js +107 -0
  152. package/components/CustomActionsView.d.ts +2 -0
  153. package/components/CustomActionsView.d.ts.map +1 -0
  154. package/components/CustomActionsView.js +134 -0
  155. package/components/DatabasePageView.d.ts +5 -0
  156. package/components/DatabasePageView.d.ts.map +1 -0
  157. package/components/DatabasePageView.js +28 -0
  158. package/components/DatabaseView.d.ts +9 -0
  159. package/components/DatabaseView.d.ts.map +1 -0
  160. package/components/DatabaseView.js +311 -0
  161. package/components/ElizaCloudDashboard.d.ts +2 -0
  162. package/components/ElizaCloudDashboard.d.ts.map +1 -0
  163. package/components/ElizaCloudDashboard.js +657 -0
  164. package/components/EmotePicker.d.ts +2 -0
  165. package/components/EmotePicker.d.ts.map +1 -0
  166. package/components/EmotePicker.js +343 -0
  167. package/components/ErrorBoundary.d.ts +22 -0
  168. package/components/ErrorBoundary.d.ts.map +1 -0
  169. package/components/ErrorBoundary.js +31 -0
  170. package/components/FineTuningView.d.ts +2 -0
  171. package/components/FineTuningView.d.ts.map +1 -0
  172. package/components/FineTuningView.js +433 -0
  173. package/components/FlaminaGuide.d.ts +10 -0
  174. package/components/FlaminaGuide.d.ts.map +1 -0
  175. package/components/FlaminaGuide.js +64 -0
  176. package/components/GameView.d.ts +11 -0
  177. package/components/GameView.d.ts.map +1 -0
  178. package/components/GameView.js +294 -0
  179. package/components/GameViewOverlay.d.ts +8 -0
  180. package/components/GameViewOverlay.d.ts.map +1 -0
  181. package/components/GameViewOverlay.js +70 -0
  182. package/components/GlobalEmoteOverlay.d.ts +2 -0
  183. package/components/GlobalEmoteOverlay.d.ts.map +1 -0
  184. package/components/GlobalEmoteOverlay.js +112 -0
  185. package/components/Header.d.ts +9 -0
  186. package/components/Header.d.ts.map +1 -0
  187. package/components/Header.js +123 -0
  188. package/components/HeartbeatsView.d.ts +2 -0
  189. package/components/HeartbeatsView.d.ts.map +1 -0
  190. package/components/HeartbeatsView.js +378 -0
  191. package/components/InventoryView.d.ts +10 -0
  192. package/components/InventoryView.d.ts.map +1 -0
  193. package/components/InventoryView.js +176 -0
  194. package/components/KnowledgeView.d.ts +20 -0
  195. package/components/KnowledgeView.d.ts.map +1 -0
  196. package/components/KnowledgeView.js +480 -0
  197. package/components/LanguageDropdown.d.ts +30 -0
  198. package/components/LanguageDropdown.d.ts.map +1 -0
  199. package/components/LanguageDropdown.js +99 -0
  200. package/components/LifoMonitorPanel.d.ts +21 -0
  201. package/components/LifoMonitorPanel.d.ts.map +1 -0
  202. package/components/LifoMonitorPanel.js +24 -0
  203. package/components/LifoSandboxView.d.ts +5 -0
  204. package/components/LifoSandboxView.d.ts.map +1 -0
  205. package/components/LifoSandboxView.js +333 -0
  206. package/components/LoadingScreen.d.ts +13 -0
  207. package/components/LoadingScreen.d.ts.map +1 -0
  208. package/components/LoadingScreen.js +70 -0
  209. package/components/LogsPageView.d.ts +2 -0
  210. package/components/LogsPageView.d.ts.map +1 -0
  211. package/components/LogsPageView.js +7 -0
  212. package/components/LogsView.d.ts +5 -0
  213. package/components/LogsView.d.ts.map +1 -0
  214. package/components/LogsView.js +71 -0
  215. package/components/MediaGalleryView.d.ts +9 -0
  216. package/components/MediaGalleryView.d.ts.map +1 -0
  217. package/components/MediaGalleryView.js +236 -0
  218. package/components/MediaSettingsSection.d.ts +11 -0
  219. package/components/MediaSettingsSection.d.ts.map +1 -0
  220. package/components/MediaSettingsSection.js +329 -0
  221. package/components/MessageContent.d.ts +51 -0
  222. package/components/MessageContent.d.ts.map +1 -0
  223. package/components/MessageContent.js +553 -0
  224. package/components/OnboardingWizard.d.ts +2 -0
  225. package/components/OnboardingWizard.d.ts.map +1 -0
  226. package/components/OnboardingWizard.js +96 -0
  227. package/components/PairingView.d.ts +5 -0
  228. package/components/PairingView.d.ts.map +1 -0
  229. package/components/PairingView.js +29 -0
  230. package/components/PermissionsSection.d.ts +20 -0
  231. package/components/PermissionsSection.d.ts.map +1 -0
  232. package/components/PermissionsSection.js +573 -0
  233. package/components/PluginsPageView.d.ts +5 -0
  234. package/components/PluginsPageView.d.ts.map +1 -0
  235. package/components/PluginsPageView.js +8 -0
  236. package/components/PluginsView.d.ts +21 -0
  237. package/components/PluginsView.d.ts.map +1 -0
  238. package/components/PluginsView.js +1534 -0
  239. package/components/ProviderSwitcher.d.ts +42 -0
  240. package/components/ProviderSwitcher.d.ts.map +1 -0
  241. package/components/ProviderSwitcher.js +493 -0
  242. package/components/RestartBanner.d.ts +2 -0
  243. package/components/RestartBanner.d.ts.map +1 -0
  244. package/components/RestartBanner.js +36 -0
  245. package/components/RuntimeView.d.ts +10 -0
  246. package/components/RuntimeView.d.ts.map +1 -0
  247. package/components/RuntimeView.js +165 -0
  248. package/components/SaveCommandModal.d.ts +12 -0
  249. package/components/SaveCommandModal.d.ts.map +1 -0
  250. package/components/SaveCommandModal.js +84 -0
  251. package/components/SecretsView.d.ts +9 -0
  252. package/components/SecretsView.d.ts.map +1 -0
  253. package/components/SecretsView.js +249 -0
  254. package/components/SettingsView.d.ts +9 -0
  255. package/components/SettingsView.d.ts.map +1 -0
  256. package/components/SettingsView.js +230 -0
  257. package/components/ShellOverlays.d.ts +8 -0
  258. package/components/ShellOverlays.d.ts.map +1 -0
  259. package/components/ShellOverlays.js +10 -0
  260. package/components/ShortcutsOverlay.d.ts +2 -0
  261. package/components/ShortcutsOverlay.d.ts.map +1 -0
  262. package/components/ShortcutsOverlay.js +79 -0
  263. package/components/SkillsView.d.ts +11 -0
  264. package/components/SkillsView.d.ts.map +1 -0
  265. package/components/SkillsView.js +358 -0
  266. package/components/StartupFailureView.d.ts +8 -0
  267. package/components/StartupFailureView.d.ts.map +1 -0
  268. package/components/StartupFailureView.js +16 -0
  269. package/components/StreamView.d.ts +16 -0
  270. package/components/StreamView.d.ts.map +1 -0
  271. package/components/StreamView.js +300 -0
  272. package/components/StripeEmbeddedCheckout.d.ts +24 -0
  273. package/components/StripeEmbeddedCheckout.d.ts.map +1 -0
  274. package/components/StripeEmbeddedCheckout.js +101 -0
  275. package/components/SubscriptionStatus.d.ts +23 -0
  276. package/components/SubscriptionStatus.d.ts.map +1 -0
  277. package/components/SubscriptionStatus.js +301 -0
  278. package/components/SystemWarningBanner.d.ts +6 -0
  279. package/components/SystemWarningBanner.d.ts.map +1 -0
  280. package/components/SystemWarningBanner.js +46 -0
  281. package/components/ThemeToggle.d.ts +21 -0
  282. package/components/ThemeToggle.d.ts.map +1 -0
  283. package/components/ThemeToggle.js +24 -0
  284. package/components/TrajectoriesView.d.ts +12 -0
  285. package/components/TrajectoriesView.d.ts.map +1 -0
  286. package/components/TrajectoriesView.js +183 -0
  287. package/components/TrajectoryDetailView.d.ts +13 -0
  288. package/components/TrajectoryDetailView.d.ts.map +1 -0
  289. package/components/TrajectoryDetailView.js +112 -0
  290. package/components/TriggersView.d.ts +2 -0
  291. package/components/TriggersView.d.ts.map +1 -0
  292. package/components/VectorBrowserView.d.ts +10 -0
  293. package/components/VectorBrowserView.d.ts.map +1 -0
  294. package/components/VectorBrowserView.js +997 -0
  295. package/components/VoiceConfigView.d.ts +11 -0
  296. package/components/VoiceConfigView.d.ts.map +1 -0
  297. package/components/VoiceConfigView.js +329 -0
  298. package/components/VrmStage.d.ts +28 -0
  299. package/components/VrmStage.d.ts.map +1 -0
  300. package/components/VrmStage.js +178 -0
  301. package/components/WhatsAppQrOverlay.d.ts +8 -0
  302. package/components/WhatsAppQrOverlay.d.ts.map +1 -0
  303. package/components/WhatsAppQrOverlay.js +63 -0
  304. package/components/apps/AppDetailPane.d.ts +15 -0
  305. package/components/apps/AppDetailPane.d.ts.map +1 -0
  306. package/components/apps/AppDetailPane.js +13 -0
  307. package/components/apps/AppsCatalogGrid.d.ts +20 -0
  308. package/components/apps/AppsCatalogGrid.d.ts.map +1 -0
  309. package/components/apps/AppsCatalogGrid.js +18 -0
  310. package/components/apps/extensions/registry.d.ts +4 -0
  311. package/components/apps/extensions/registry.d.ts.map +1 -0
  312. package/components/apps/extensions/registry.js +7 -0
  313. package/components/apps/extensions/types.d.ts +7 -0
  314. package/components/apps/extensions/types.d.ts.map +1 -0
  315. package/components/apps/extensions/types.js +1 -0
  316. package/components/apps/helpers.d.ts +7 -0
  317. package/components/apps/helpers.d.ts.map +1 -0
  318. package/components/apps/helpers.js +44 -0
  319. package/components/avatar/VrmAnimationLoader.d.ts +30 -0
  320. package/components/avatar/VrmAnimationLoader.d.ts.map +1 -0
  321. package/components/avatar/VrmAnimationLoader.js +99 -0
  322. package/components/avatar/VrmBlinkController.d.ts +37 -0
  323. package/components/avatar/VrmBlinkController.d.ts.map +1 -0
  324. package/components/avatar/VrmBlinkController.js +98 -0
  325. package/components/avatar/VrmCameraManager.d.ts +57 -0
  326. package/components/avatar/VrmCameraManager.d.ts.map +1 -0
  327. package/components/avatar/VrmCameraManager.js +277 -0
  328. package/components/avatar/VrmEngine.d.ts +246 -0
  329. package/components/avatar/VrmEngine.d.ts.map +1 -0
  330. package/components/avatar/VrmEngine.js +2076 -0
  331. package/components/avatar/VrmFootShadow.d.ts +18 -0
  332. package/components/avatar/VrmFootShadow.d.ts.map +1 -0
  333. package/components/avatar/VrmFootShadow.js +83 -0
  334. package/components/avatar/VrmViewer.d.ts +60 -0
  335. package/components/avatar/VrmViewer.d.ts.map +1 -0
  336. package/components/avatar/VrmViewer.js +396 -0
  337. package/components/avatar/mixamoVRMRigMap.d.ts +3 -0
  338. package/components/avatar/mixamoVRMRigMap.d.ts.map +1 -0
  339. package/components/avatar/mixamoVRMRigMap.js +56 -0
  340. package/components/avatar/retargetMixamoFbxToVrm.d.ts +9 -0
  341. package/components/avatar/retargetMixamoFbxToVrm.d.ts.map +1 -0
  342. package/components/avatar/retargetMixamoFbxToVrm.js +88 -0
  343. package/components/avatar/retargetMixamoGltfToVrm.d.ts +11 -0
  344. package/components/avatar/retargetMixamoGltfToVrm.d.ts.map +1 -0
  345. package/components/avatar/retargetMixamoGltfToVrm.js +80 -0
  346. package/components/chainConfig.d.ts +89 -0
  347. package/components/chainConfig.d.ts.map +1 -0
  348. package/components/chainConfig.js +287 -0
  349. package/components/companion/CompanionHeader.d.ts +15 -0
  350. package/components/companion/CompanionHeader.d.ts.map +1 -0
  351. package/components/companion/CompanionHeader.js +7 -0
  352. package/components/companion/CompanionSceneHost.d.ts +2 -0
  353. package/components/companion/CompanionSceneHost.d.ts.map +1 -0
  354. package/components/companion/CompanionSceneHost.js +1 -0
  355. package/components/companion/VrmStage.d.ts +3 -0
  356. package/components/companion/VrmStage.d.ts.map +1 -0
  357. package/components/companion/VrmStage.js +1 -0
  358. package/components/companion/index.d.ts +18 -0
  359. package/components/companion/index.d.ts.map +1 -0
  360. package/components/companion/index.js +17 -0
  361. package/components/companion/walletUtils.d.ts +95 -0
  362. package/components/companion/walletUtils.d.ts.map +1 -0
  363. package/components/companion/walletUtils.js +167 -0
  364. package/components/companion-shell-styles.d.ts +38 -0
  365. package/components/companion-shell-styles.d.ts.map +1 -0
  366. package/components/companion-shell-styles.js +248 -0
  367. package/components/confirm-delete-control.d.ts +16 -0
  368. package/components/confirm-delete-control.d.ts.map +1 -0
  369. package/components/confirm-delete-control.js +12 -0
  370. package/components/conversations/ConversationListItem.d.ts +31 -0
  371. package/components/conversations/ConversationListItem.d.ts.map +1 -0
  372. package/components/conversations/ConversationListItem.js +52 -0
  373. package/components/conversations/conversation-utils.d.ts +9 -0
  374. package/components/conversations/conversation-utils.d.ts.map +1 -0
  375. package/components/conversations/conversation-utils.js +138 -0
  376. package/components/format.d.ts +54 -0
  377. package/components/format.d.ts.map +1 -0
  378. package/components/format.js +82 -0
  379. package/components/index.d.ts +96 -0
  380. package/components/index.d.ts.map +1 -0
  381. package/components/index.js +95 -0
  382. package/components/inventory/CopyableAddress.d.ts +8 -0
  383. package/components/inventory/CopyableAddress.d.ts.map +1 -0
  384. package/components/inventory/CopyableAddress.js +18 -0
  385. package/components/inventory/InventoryToolbar.d.ts +25 -0
  386. package/components/inventory/InventoryToolbar.d.ts.map +1 -0
  387. package/components/inventory/InventoryToolbar.js +28 -0
  388. package/components/inventory/NftGrid.d.ts +13 -0
  389. package/components/inventory/NftGrid.d.ts.map +1 -0
  390. package/components/inventory/NftGrid.js +29 -0
  391. package/components/inventory/TokenLogo.d.ts +12 -0
  392. package/components/inventory/TokenLogo.d.ts.map +1 -0
  393. package/components/inventory/TokenLogo.js +33 -0
  394. package/components/inventory/TokensTable.d.ts +24 -0
  395. package/components/inventory/TokensTable.d.ts.map +1 -0
  396. package/components/inventory/TokensTable.js +26 -0
  397. package/components/inventory/constants.d.ts +52 -0
  398. package/components/inventory/constants.d.ts.map +1 -0
  399. package/components/inventory/constants.js +121 -0
  400. package/components/inventory/index.d.ts +9 -0
  401. package/components/inventory/index.d.ts.map +1 -0
  402. package/components/inventory/index.js +8 -0
  403. package/components/inventory/media-url.d.ts +6 -0
  404. package/components/inventory/media-url.d.ts.map +1 -0
  405. package/components/inventory/media-url.js +28 -0
  406. package/components/inventory/useInventoryData.d.ts +53 -0
  407. package/components/inventory/useInventoryData.d.ts.map +1 -0
  408. package/components/inventory/useInventoryData.js +332 -0
  409. package/components/knowledge-upload-image.d.ts +27 -0
  410. package/components/knowledge-upload-image.d.ts.map +1 -0
  411. package/components/knowledge-upload-image.js +146 -0
  412. package/components/labels.d.ts +6 -0
  413. package/components/labels.d.ts.map +1 -0
  414. package/components/labels.js +40 -0
  415. package/components/onboarding/ActivateStep.d.ts +2 -0
  416. package/components/onboarding/ActivateStep.d.ts.map +1 -0
  417. package/components/onboarding/ActivateStep.js +10 -0
  418. package/components/onboarding/ConnectionStep.d.ts +2 -0
  419. package/components/onboarding/ConnectionStep.d.ts.map +1 -0
  420. package/components/onboarding/ConnectionStep.js +609 -0
  421. package/components/onboarding/IdentityStep.d.ts +2 -0
  422. package/components/onboarding/IdentityStep.d.ts.map +1 -0
  423. package/components/onboarding/IdentityStep.js +102 -0
  424. package/components/onboarding/OnboardingPanel.d.ts +9 -0
  425. package/components/onboarding/OnboardingPanel.d.ts.map +1 -0
  426. package/components/onboarding/OnboardingPanel.js +24 -0
  427. package/components/onboarding/OnboardingStepNav.d.ts +2 -0
  428. package/components/onboarding/OnboardingStepNav.d.ts.map +1 -0
  429. package/components/onboarding/OnboardingStepNav.js +23 -0
  430. package/components/onboarding/PermissionsStep.d.ts +2 -0
  431. package/components/onboarding/PermissionsStep.d.ts.map +1 -0
  432. package/components/onboarding/PermissionsStep.js +7 -0
  433. package/components/onboarding/RpcStep.d.ts +2 -0
  434. package/components/onboarding/RpcStep.d.ts.map +1 -0
  435. package/components/onboarding/RpcStep.js +125 -0
  436. package/components/permissions/PermissionIcon.d.ts +4 -0
  437. package/components/permissions/PermissionIcon.d.ts.map +1 -0
  438. package/components/permissions/PermissionIcon.js +12 -0
  439. package/components/permissions/StreamingPermissions.d.ts +20 -0
  440. package/components/permissions/StreamingPermissions.d.ts.map +1 -0
  441. package/components/permissions/StreamingPermissions.js +177 -0
  442. package/components/plugins/showcase-data.d.ts +7 -0
  443. package/components/plugins/showcase-data.d.ts.map +1 -0
  444. package/components/plugins/showcase-data.js +464 -0
  445. package/components/shared/ShellHeaderControls.d.ts +27 -0
  446. package/components/shared/ShellHeaderControls.d.ts.map +1 -0
  447. package/components/shared/ShellHeaderControls.js +60 -0
  448. package/components/shared-companion-scene-context.d.ts +3 -0
  449. package/components/shared-companion-scene-context.d.ts.map +1 -0
  450. package/components/shared-companion-scene-context.js +13 -0
  451. package/components/skeletons.d.ts +17 -0
  452. package/components/skeletons.d.ts.map +1 -0
  453. package/components/skeletons.js +22 -0
  454. package/components/stream/ActivityFeed.d.ts +5 -0
  455. package/components/stream/ActivityFeed.d.ts.map +1 -0
  456. package/components/stream/ActivityFeed.js +57 -0
  457. package/components/stream/AvatarPip.d.ts +5 -0
  458. package/components/stream/AvatarPip.d.ts.map +1 -0
  459. package/components/stream/AvatarPip.js +6 -0
  460. package/components/stream/ChatContent.d.ts +6 -0
  461. package/components/stream/ChatContent.d.ts.map +1 -0
  462. package/components/stream/ChatContent.js +69 -0
  463. package/components/stream/ChatTicker.d.ts +5 -0
  464. package/components/stream/ChatTicker.d.ts.map +1 -0
  465. package/components/stream/ChatTicker.js +34 -0
  466. package/components/stream/IdleContent.d.ts +5 -0
  467. package/components/stream/IdleContent.d.ts.map +1 -0
  468. package/components/stream/IdleContent.js +17 -0
  469. package/components/stream/StatusBar.d.ts +36 -0
  470. package/components/stream/StatusBar.d.ts.map +1 -0
  471. package/components/stream/StatusBar.js +140 -0
  472. package/components/stream/StreamSettings.d.ts +33 -0
  473. package/components/stream/StreamSettings.d.ts.map +1 -0
  474. package/components/stream/StreamSettings.js +99 -0
  475. package/components/stream/StreamTerminal.d.ts +2 -0
  476. package/components/stream/StreamTerminal.d.ts.map +1 -0
  477. package/components/stream/StreamTerminal.js +52 -0
  478. package/components/stream/StreamVoiceConfig.d.ts +10 -0
  479. package/components/stream/StreamVoiceConfig.d.ts.map +1 -0
  480. package/components/stream/StreamVoiceConfig.js +88 -0
  481. package/components/stream/helpers.d.ts +32 -0
  482. package/components/stream/helpers.d.ts.map +1 -0
  483. package/components/stream/helpers.js +110 -0
  484. package/components/stream/overlays/OverlayLayer.d.ts +20 -0
  485. package/components/stream/overlays/OverlayLayer.d.ts.map +1 -0
  486. package/components/stream/overlays/OverlayLayer.js +24 -0
  487. package/components/stream/overlays/built-in/ActionTickerWidget.d.ts +8 -0
  488. package/components/stream/overlays/built-in/ActionTickerWidget.d.ts.map +1 -0
  489. package/components/stream/overlays/built-in/ActionTickerWidget.js +44 -0
  490. package/components/stream/overlays/built-in/AlertPopupWidget.d.ts +7 -0
  491. package/components/stream/overlays/built-in/AlertPopupWidget.d.ts.map +1 -0
  492. package/components/stream/overlays/built-in/AlertPopupWidget.js +62 -0
  493. package/components/stream/overlays/built-in/BrandingWidget.d.ts +7 -0
  494. package/components/stream/overlays/built-in/BrandingWidget.d.ts.map +1 -0
  495. package/components/stream/overlays/built-in/BrandingWidget.js +36 -0
  496. package/components/stream/overlays/built-in/CustomHtmlWidget.d.ts +26 -0
  497. package/components/stream/overlays/built-in/CustomHtmlWidget.d.ts.map +1 -0
  498. package/components/stream/overlays/built-in/CustomHtmlWidget.js +78 -0
  499. package/components/stream/overlays/built-in/PeonGlassWidget.d.ts +11 -0
  500. package/components/stream/overlays/built-in/PeonGlassWidget.d.ts.map +1 -0
  501. package/components/stream/overlays/built-in/PeonGlassWidget.js +188 -0
  502. package/components/stream/overlays/built-in/PeonHudWidget.d.ts +10 -0
  503. package/components/stream/overlays/built-in/PeonHudWidget.d.ts.map +1 -0
  504. package/components/stream/overlays/built-in/PeonHudWidget.js +168 -0
  505. package/components/stream/overlays/built-in/PeonSakuraWidget.d.ts +11 -0
  506. package/components/stream/overlays/built-in/PeonSakuraWidget.d.ts.map +1 -0
  507. package/components/stream/overlays/built-in/PeonSakuraWidget.js +213 -0
  508. package/components/stream/overlays/built-in/ThoughtBubbleWidget.d.ts +8 -0
  509. package/components/stream/overlays/built-in/ThoughtBubbleWidget.d.ts.map +1 -0
  510. package/components/stream/overlays/built-in/ThoughtBubbleWidget.js +59 -0
  511. package/components/stream/overlays/built-in/ViewerCountWidget.d.ts +7 -0
  512. package/components/stream/overlays/built-in/ViewerCountWidget.d.ts.map +1 -0
  513. package/components/stream/overlays/built-in/ViewerCountWidget.js +34 -0
  514. package/components/stream/overlays/built-in/index.d.ts +13 -0
  515. package/components/stream/overlays/built-in/index.d.ts.map +1 -0
  516. package/components/stream/overlays/built-in/index.js +12 -0
  517. package/components/stream/overlays/registry.d.ts +11 -0
  518. package/components/stream/overlays/registry.d.ts.map +1 -0
  519. package/components/stream/overlays/registry.js +16 -0
  520. package/components/stream/overlays/types.d.ts +67 -0
  521. package/components/stream/overlays/types.d.ts.map +1 -0
  522. package/components/stream/overlays/types.js +7 -0
  523. package/components/stream/overlays/useOverlayLayout.d.ts +27 -0
  524. package/components/stream/overlays/useOverlayLayout.d.ts.map +1 -0
  525. package/components/stream/overlays/useOverlayLayout.js +162 -0
  526. package/components/trajectory-format.d.ts +6 -0
  527. package/components/trajectory-format.d.ts.map +1 -0
  528. package/components/trajectory-format.js +43 -0
  529. package/components/ui-badges.d.ts +23 -0
  530. package/components/ui-badges.d.ts.map +1 -0
  531. package/components/ui-badges.js +38 -0
  532. package/components/ui-switch.d.ts +14 -0
  533. package/components/ui-switch.d.ts.map +1 -0
  534. package/components/ui-switch.js +15 -0
  535. package/components/vector-browser-three.d.ts +4 -0
  536. package/components/vector-browser-three.d.ts.map +1 -0
  537. package/components/vector-browser-three.js +21 -0
  538. package/config/branding.d.ts +49 -0
  539. package/config/branding.d.ts.map +1 -0
  540. package/config/branding.js +16 -0
  541. package/config/config-catalog.d.ts +376 -0
  542. package/config/config-catalog.d.ts.map +1 -0
  543. package/config/config-catalog.js +724 -0
  544. package/config/config-field.d.ts +68 -0
  545. package/config/config-field.d.ts.map +1 -0
  546. package/config/config-field.js +840 -0
  547. package/config/config-renderer.d.ts +176 -0
  548. package/config/config-renderer.d.ts.map +1 -0
  549. package/config/config-renderer.js +405 -0
  550. package/config/index.d.ts +6 -0
  551. package/config/index.d.ts.map +1 -0
  552. package/config/index.js +5 -0
  553. package/config/ui-renderer.d.ts +26 -0
  554. package/config/ui-renderer.d.ts.map +1 -0
  555. package/config/ui-renderer.js +815 -0
  556. package/config/ui-spec.d.ts +164 -0
  557. package/config/ui-spec.d.ts.map +1 -0
  558. package/config/ui-spec.js +13 -0
  559. package/events/index.d.ts +47 -0
  560. package/events/index.d.ts.map +1 -0
  561. package/events/index.js +43 -0
  562. package/hooks/index.d.ts +15 -0
  563. package/hooks/index.d.ts.map +1 -0
  564. package/hooks/useBugReport.d.ts +14 -0
  565. package/hooks/useBugReport.d.ts.map +1 -0
  566. package/hooks/useBugReport.js +18 -0
  567. package/hooks/useCanvasWindow.d.ts +38 -0
  568. package/hooks/useCanvasWindow.d.ts.map +1 -0
  569. package/hooks/useCanvasWindow.js +273 -0
  570. package/hooks/useChatAvatarVoice.d.ts +10 -0
  571. package/hooks/useChatAvatarVoice.d.ts.map +1 -0
  572. package/hooks/useChatAvatarVoice.js +71 -0
  573. package/hooks/useClickOutside.d.ts +6 -0
  574. package/hooks/useClickOutside.d.ts.map +1 -0
  575. package/hooks/useClickOutside.js +25 -0
  576. package/hooks/useContextMenu.d.ts +17 -0
  577. package/hooks/useContextMenu.d.ts.map +1 -0
  578. package/hooks/useContextMenu.js +100 -0
  579. package/hooks/useKeyboardShortcuts.d.ts +17 -0
  580. package/hooks/useKeyboardShortcuts.d.ts.map +1 -0
  581. package/hooks/useKeyboardShortcuts.js +67 -0
  582. package/hooks/useLifoSync.d.ts +18 -0
  583. package/hooks/useLifoSync.d.ts.map +1 -0
  584. package/hooks/useLifoSync.js +113 -0
  585. package/hooks/useMemoryMonitor.d.ts +87 -0
  586. package/hooks/useMemoryMonitor.d.ts.map +1 -0
  587. package/hooks/useMemoryMonitor.js +209 -0
  588. package/hooks/useRenderGuard.d.ts +17 -0
  589. package/hooks/useRenderGuard.d.ts.map +1 -0
  590. package/hooks/useRenderGuard.js +36 -0
  591. package/hooks/useRetakeCapture.d.ts +12 -0
  592. package/hooks/useRetakeCapture.d.ts.map +1 -0
  593. package/hooks/useRetakeCapture.js +60 -0
  594. package/hooks/useStreamPopoutNavigation.d.ts +3 -0
  595. package/hooks/useStreamPopoutNavigation.d.ts.map +1 -0
  596. package/hooks/useStreamPopoutNavigation.js +17 -0
  597. package/hooks/useTimeout.d.ts +11 -0
  598. package/hooks/useTimeout.d.ts.map +1 -0
  599. package/hooks/useTimeout.js +32 -0
  600. package/hooks/useVoiceChat.d.ts +94 -0
  601. package/hooks/useVoiceChat.d.ts.map +1 -0
  602. package/hooks/useVoiceChat.js +1074 -0
  603. package/hooks/useWhatsAppPairing.d.ts +11 -0
  604. package/hooks/useWhatsAppPairing.d.ts.map +1 -0
  605. package/hooks/useWhatsAppPairing.js +95 -0
  606. package/i18n/index.d.ts +7 -0
  607. package/i18n/index.d.ts.map +1 -0
  608. package/i18n/index.js +53 -0
  609. package/i18n/locales/en.json +1239 -0
  610. package/i18n/locales/es.json +1236 -0
  611. package/i18n/locales/ko.json +1236 -0
  612. package/i18n/locales/pt.json +1236 -0
  613. package/i18n/locales/zh-CN.json +1236 -0
  614. package/i18n/messages.d.ts +6 -0
  615. package/i18n/messages.d.ts.map +1 -0
  616. package/i18n/messages.js +14 -0
  617. package/index.d.ts +5 -0
  618. package/index.d.ts.map +1 -0
  619. package/navigation/index.d.ts +27 -0
  620. package/navigation/index.d.ts.map +1 -0
  621. package/navigation/index.js +232 -0
  622. package/onboarding-config.d.ts +25 -0
  623. package/onboarding-config.d.ts.map +1 -0
  624. package/onboarding-config.js +76 -0
  625. package/package.json +143 -53
  626. package/platform/browser-launch.d.ts +2 -0
  627. package/platform/browser-launch.d.ts.map +1 -0
  628. package/platform/browser-launch.js +109 -0
  629. package/platform/index.d.ts +14 -0
  630. package/platform/index.d.ts.map +1 -0
  631. package/platform/index.js +24 -0
  632. package/platform/init.d.ts +40 -0
  633. package/platform/init.d.ts.map +1 -0
  634. package/platform/init.js +160 -0
  635. package/platform/lifo.d.ts +51 -0
  636. package/platform/lifo.d.ts.map +1 -0
  637. package/platform/lifo.js +138 -0
  638. package/providers/index.d.ts +19 -0
  639. package/providers/index.d.ts.map +1 -0
  640. package/providers/index.js +80 -0
  641. package/shell-params.d.ts +12 -0
  642. package/shell-params.d.ts.map +1 -0
  643. package/shell-params.js +19 -0
  644. package/state/AppContext.d.ts +12 -0
  645. package/state/AppContext.d.ts.map +1 -0
  646. package/state/AppContext.js +5060 -0
  647. package/state/index.d.ts +7 -0
  648. package/state/index.d.ts.map +1 -0
  649. package/state/internal.d.ts +7 -0
  650. package/state/internal.d.ts.map +1 -0
  651. package/state/internal.js +6 -0
  652. package/state/onboarding-resume.d.ts +11 -0
  653. package/state/onboarding-resume.d.ts.map +1 -0
  654. package/state/onboarding-resume.js +189 -0
  655. package/state/parsers.d.ts +26 -0
  656. package/state/parsers.d.ts.map +1 -0
  657. package/state/parsers.js +255 -0
  658. package/state/persistence.d.ts +59 -0
  659. package/state/persistence.d.ts.map +1 -0
  660. package/state/persistence.js +326 -0
  661. package/state/shell-routing.d.ts +12 -0
  662. package/state/shell-routing.d.ts.map +1 -0
  663. package/state/shell-routing.js +25 -0
  664. package/state/types.d.ts +421 -0
  665. package/state/types.d.ts.map +1 -0
  666. package/state/types.js +75 -0
  667. package/state/ui-preferences.d.ts +3 -0
  668. package/state/ui-preferences.d.ts.map +1 -0
  669. package/state/ui-preferences.js +1 -0
  670. package/state/useApp.d.ts +4 -0
  671. package/state/useApp.d.ts.map +1 -0
  672. package/state/useApp.js +22 -0
  673. package/state/vrm.d.ts +30 -0
  674. package/state/vrm.d.ts.map +1 -0
  675. package/state/vrm.js +82 -0
  676. package/styles/anime.css +6321 -0
  677. package/styles/onboarding-game.css +1092 -0
  678. package/types/index.d.ts +657 -0
  679. package/types/index.d.ts.map +1 -0
  680. package/types/index.js +1 -0
  681. package/utils/asset-url.d.ts +26 -0
  682. package/utils/asset-url.d.ts.map +1 -0
  683. package/utils/asset-url.js +99 -0
  684. package/utils/assistant-text.d.ts +2 -0
  685. package/utils/assistant-text.d.ts.map +1 -0
  686. package/utils/assistant-text.js +161 -0
  687. package/utils/clipboard.d.ts +2 -0
  688. package/utils/clipboard.d.ts.map +1 -0
  689. package/utils/clipboard.js +38 -0
  690. package/utils/desktop-dialogs.d.ts +19 -0
  691. package/utils/desktop-dialogs.d.ts.map +1 -0
  692. package/utils/desktop-dialogs.js +50 -0
  693. package/utils/eliza-globals.d.ts +11 -0
  694. package/utils/eliza-globals.d.ts.map +1 -0
  695. package/utils/eliza-globals.js +33 -0
  696. package/utils/index.d.ts +8 -0
  697. package/utils/index.d.ts.map +1 -0
  698. package/utils/number-parsing.d.ts +44 -0
  699. package/utils/number-parsing.d.ts.map +1 -0
  700. package/utils/number-parsing.js +56 -0
  701. package/utils/openExternalUrl.d.ts +2 -0
  702. package/utils/openExternalUrl.d.ts.map +1 -0
  703. package/utils/openExternalUrl.js +17 -0
  704. package/utils/spoken-text.d.ts +2 -0
  705. package/utils/spoken-text.d.ts.map +1 -0
  706. package/utils/spoken-text.js +56 -0
  707. package/utils/streaming-text.d.ts +3 -0
  708. package/utils/streaming-text.d.ts.map +1 -0
  709. package/utils/streaming-text.js +87 -0
  710. package/voice/index.d.ts +2 -0
  711. package/voice/index.d.ts.map +1 -0
  712. package/voice/types.d.ts +25 -0
  713. package/voice/types.d.ts.map +1 -0
  714. package/voice/types.js +166 -0
  715. package/wallet-rpc.d.ts +8 -0
  716. package/wallet-rpc.d.ts.map +1 -0
  717. package/wallet-rpc.js +131 -0
  718. package/.turbo/turbo-build.log +0 -5
  719. package/src/App.tsx +0 -504
  720. package/src/actions/character.test.ts +0 -139
  721. package/src/actions/character.ts +0 -334
  722. package/src/actions/chat-helpers.ts +0 -100
  723. package/src/actions/cloud.ts +0 -59
  724. package/src/actions/index.ts +0 -12
  725. package/src/actions/lifecycle.ts +0 -175
  726. package/src/actions/onboarding.ts +0 -38
  727. package/src/actions/triggers.ts +0 -190
  728. package/src/ambient.d.ts +0 -33
  729. package/src/api/client.ts +0 -5659
  730. package/src/autonomy/index.ts +0 -477
  731. package/src/bridge/capacitor-bridge.ts +0 -295
  732. package/src/bridge/electrobun-rpc.ts +0 -78
  733. package/src/bridge/electrobun-runtime.ts +0 -28
  734. package/src/bridge/native-plugins.ts +0 -138
  735. package/src/bridge/plugin-bridge.ts +0 -352
  736. package/src/bridge/storage-bridge.ts +0 -162
  737. package/src/chat/index.ts +0 -250
  738. package/src/coding/index.ts +0 -43
  739. package/src/components/AdvancedPageView.tsx +0 -382
  740. package/src/components/AgentActivityBox.tsx +0 -49
  741. package/src/components/ApiKeyConfig.tsx +0 -222
  742. package/src/components/AppsPageView.tsx +0 -52
  743. package/src/components/AppsView.tsx +0 -293
  744. package/src/components/AvatarLoader.tsx +0 -104
  745. package/src/components/AvatarSelector.tsx +0 -223
  746. package/src/components/BscTradePanel.tsx +0 -549
  747. package/src/components/BugReportModal.tsx +0 -499
  748. package/src/components/CharacterRoster.tsx +0 -143
  749. package/src/components/CharacterView.tsx +0 -1575
  750. package/src/components/ChatAvatar.test.ts +0 -97
  751. package/src/components/ChatAvatar.tsx +0 -147
  752. package/src/components/ChatComposer.tsx +0 -330
  753. package/src/components/ChatMessage.tsx +0 -448
  754. package/src/components/ChatModalView.test.tsx +0 -118
  755. package/src/components/ChatModalView.tsx +0 -125
  756. package/src/components/ChatView.tsx +0 -992
  757. package/src/components/CloudOnboarding.tsx +0 -81
  758. package/src/components/CloudSourceControls.tsx +0 -85
  759. package/src/components/CodingAgentSettingsSection.tsx +0 -537
  760. package/src/components/CommandPalette.tsx +0 -284
  761. package/src/components/CompanionSceneHost.tsx +0 -517
  762. package/src/components/CompanionShell.tsx +0 -31
  763. package/src/components/CompanionView.tsx +0 -110
  764. package/src/components/ConfigPageView.tsx +0 -763
  765. package/src/components/ConfigSaveFooter.tsx +0 -41
  766. package/src/components/ConfirmModal.tsx +0 -379
  767. package/src/components/ConnectionFailedBanner.tsx +0 -91
  768. package/src/components/ConnectorsPageView.tsx +0 -13
  769. package/src/components/ConversationsSidebar.tsx +0 -279
  770. package/src/components/CustomActionEditor.tsx +0 -1127
  771. package/src/components/CustomActionsPanel.tsx +0 -288
  772. package/src/components/CustomActionsView.tsx +0 -325
  773. package/src/components/DatabasePageView.tsx +0 -55
  774. package/src/components/DatabaseView.tsx +0 -814
  775. package/src/components/ElizaCloudDashboard.tsx +0 -1696
  776. package/src/components/EmotePicker.tsx +0 -529
  777. package/src/components/ErrorBoundary.tsx +0 -76
  778. package/src/components/FineTuningView.tsx +0 -1080
  779. package/src/components/FlaminaGuide.test.tsx +0 -61
  780. package/src/components/FlaminaGuide.tsx +0 -212
  781. package/src/components/GameView.tsx +0 -551
  782. package/src/components/GameViewOverlay.tsx +0 -133
  783. package/src/components/GlobalEmoteOverlay.tsx +0 -152
  784. package/src/components/Header.test.tsx +0 -413
  785. package/src/components/Header.tsx +0 -400
  786. package/src/components/HeartbeatsView.tsx +0 -1003
  787. package/src/components/InventoryView.tsx +0 -393
  788. package/src/components/KnowledgeView.tsx +0 -1128
  789. package/src/components/LanguageDropdown.tsx +0 -192
  790. package/src/components/LifoMonitorPanel.tsx +0 -196
  791. package/src/components/LifoSandboxView.tsx +0 -499
  792. package/src/components/LoadingScreen.tsx +0 -112
  793. package/src/components/LogsPageView.tsx +0 -17
  794. package/src/components/LogsView.tsx +0 -239
  795. package/src/components/MediaGalleryView.tsx +0 -431
  796. package/src/components/MediaSettingsSection.tsx +0 -893
  797. package/src/components/MessageContent.tsx +0 -815
  798. package/src/components/MiladyBar.tsx +0 -103
  799. package/src/components/MiladyBarSettings.tsx +0 -872
  800. package/src/components/OnboardingWizard.test.tsx +0 -104
  801. package/src/components/OnboardingWizard.tsx +0 -249
  802. package/src/components/PairingView.tsx +0 -109
  803. package/src/components/PermissionsSection.tsx +0 -1184
  804. package/src/components/PluginsPageView.tsx +0 -9
  805. package/src/components/PluginsView.tsx +0 -3129
  806. package/src/components/ProviderSwitcher.tsx +0 -903
  807. package/src/components/RestartBanner.tsx +0 -76
  808. package/src/components/RuntimeView.tsx +0 -460
  809. package/src/components/SaveCommandModal.tsx +0 -211
  810. package/src/components/SecretsView.tsx +0 -569
  811. package/src/components/SecurityPageView.tsx +0 -242
  812. package/src/components/SettingsView.tsx +0 -825
  813. package/src/components/ShellOverlays.tsx +0 -41
  814. package/src/components/ShortcutsOverlay.tsx +0 -155
  815. package/src/components/SkillsView.tsx +0 -1435
  816. package/src/components/StartupFailureView.tsx +0 -63
  817. package/src/components/StreamView.tsx +0 -481
  818. package/src/components/StripeEmbeddedCheckout.tsx +0 -155
  819. package/src/components/SubscriptionStatus.tsx +0 -640
  820. package/src/components/SystemWarningBanner.tsx +0 -71
  821. package/src/components/ThemeToggle.tsx +0 -103
  822. package/src/components/TrajectoriesView.tsx +0 -526
  823. package/src/components/TrajectoryDetailView.tsx +0 -426
  824. package/src/components/VectorBrowserView.tsx +0 -1633
  825. package/src/components/VoiceConfigView.tsx +0 -674
  826. package/src/components/VrmStage.test.ts +0 -176
  827. package/src/components/VrmStage.tsx +0 -309
  828. package/src/components/WhatsAppQrOverlay.tsx +0 -230
  829. package/src/components/__tests__/chainConfig.test.ts +0 -220
  830. package/src/components/apps/AppDetailPane.tsx +0 -242
  831. package/src/components/apps/AppsCatalogGrid.tsx +0 -137
  832. package/src/components/apps/extensions/registry.ts +0 -13
  833. package/src/components/apps/extensions/types.ts +0 -9
  834. package/src/components/apps/helpers.ts +0 -43
  835. package/src/components/avatar/VrmAnimationLoader.test.ts +0 -164
  836. package/src/components/avatar/VrmAnimationLoader.ts +0 -151
  837. package/src/components/avatar/VrmBlinkController.ts +0 -118
  838. package/src/components/avatar/VrmCameraManager.ts +0 -407
  839. package/src/components/avatar/VrmEngine.ts +0 -2767
  840. package/src/components/avatar/VrmFootShadow.ts +0 -96
  841. package/src/components/avatar/VrmViewer.tsx +0 -421
  842. package/src/components/avatar/__tests__/VrmCameraManager.test.ts +0 -168
  843. package/src/components/avatar/__tests__/VrmEngine.test.ts +0 -1574
  844. package/src/components/avatar/mixamoVRMRigMap.ts +0 -62
  845. package/src/components/avatar/retargetMixamoFbxToVrm.ts +0 -144
  846. package/src/components/avatar/retargetMixamoGltfToVrm.ts +0 -119
  847. package/src/components/chainConfig.ts +0 -400
  848. package/src/components/companion/CompanionHeader.tsx +0 -50
  849. package/src/components/companion/CompanionSceneHost.tsx +0 -5
  850. package/src/components/companion/VrmStage.tsx +0 -2
  851. package/src/components/companion/__tests__/walletUtils.test.ts +0 -742
  852. package/src/components/companion/index.ts +0 -18
  853. package/src/components/companion/walletUtils.ts +0 -290
  854. package/src/components/companion-shell-styles.test.ts +0 -142
  855. package/src/components/companion-shell-styles.ts +0 -270
  856. package/src/components/confirm-delete-control.tsx +0 -69
  857. package/src/components/conversations/ConversationListItem.tsx +0 -185
  858. package/src/components/conversations/conversation-utils.ts +0 -151
  859. package/src/components/format.ts +0 -131
  860. package/src/components/index.ts +0 -96
  861. package/src/components/inventory/CopyableAddress.tsx +0 -41
  862. package/src/components/inventory/InventoryToolbar.tsx +0 -142
  863. package/src/components/inventory/NftGrid.tsx +0 -99
  864. package/src/components/inventory/TokenLogo.tsx +0 -71
  865. package/src/components/inventory/TokensTable.tsx +0 -216
  866. package/src/components/inventory/constants.ts +0 -170
  867. package/src/components/inventory/index.ts +0 -29
  868. package/src/components/inventory/media-url.test.ts +0 -38
  869. package/src/components/inventory/media-url.ts +0 -36
  870. package/src/components/inventory/useInventoryData.ts +0 -460
  871. package/src/components/knowledge-upload-image.ts +0 -215
  872. package/src/components/labels.ts +0 -46
  873. package/src/components/milady-bar/CloudCreditsChip.tsx +0 -61
  874. package/src/components/milady-bar/ProviderDropdown.tsx +0 -166
  875. package/src/components/milady-bar/WalletSummary.tsx +0 -61
  876. package/src/components/milady-bar/index.ts +0 -3
  877. package/src/components/onboarding/ActivateStep.tsx +0 -34
  878. package/src/components/onboarding/ConnectionStep.tsx +0 -1591
  879. package/src/components/onboarding/IdentityStep.tsx +0 -251
  880. package/src/components/onboarding/OnboardingPanel.tsx +0 -39
  881. package/src/components/onboarding/OnboardingStepNav.tsx +0 -41
  882. package/src/components/onboarding/PermissionsStep.tsx +0 -20
  883. package/src/components/onboarding/RpcStep.tsx +0 -402
  884. package/src/components/permissions/PermissionIcon.tsx +0 -25
  885. package/src/components/permissions/StreamingPermissions.tsx +0 -413
  886. package/src/components/plugins/showcase-data.ts +0 -481
  887. package/src/components/shared/ShellHeaderControls.tsx +0 -198
  888. package/src/components/shared-companion-scene-context.ts +0 -15
  889. package/src/components/skeletons.tsx +0 -88
  890. package/src/components/stream/ActivityFeed.tsx +0 -113
  891. package/src/components/stream/AvatarPip.tsx +0 -10
  892. package/src/components/stream/ChatContent.tsx +0 -126
  893. package/src/components/stream/ChatTicker.tsx +0 -55
  894. package/src/components/stream/IdleContent.tsx +0 -73
  895. package/src/components/stream/StatusBar.tsx +0 -463
  896. package/src/components/stream/StreamSettings.tsx +0 -506
  897. package/src/components/stream/StreamTerminal.tsx +0 -94
  898. package/src/components/stream/StreamVoiceConfig.tsx +0 -160
  899. package/src/components/stream/helpers.ts +0 -134
  900. package/src/components/stream/overlays/OverlayLayer.tsx +0 -75
  901. package/src/components/stream/overlays/built-in/ActionTickerWidget.tsx +0 -64
  902. package/src/components/stream/overlays/built-in/AlertPopupWidget.tsx +0 -87
  903. package/src/components/stream/overlays/built-in/BrandingWidget.tsx +0 -51
  904. package/src/components/stream/overlays/built-in/CustomHtmlWidget.tsx +0 -105
  905. package/src/components/stream/overlays/built-in/PeonGlassWidget.tsx +0 -265
  906. package/src/components/stream/overlays/built-in/PeonHudWidget.tsx +0 -247
  907. package/src/components/stream/overlays/built-in/PeonSakuraWidget.tsx +0 -278
  908. package/src/components/stream/overlays/built-in/ThoughtBubbleWidget.tsx +0 -77
  909. package/src/components/stream/overlays/built-in/ViewerCountWidget.tsx +0 -46
  910. package/src/components/stream/overlays/built-in/index.ts +0 -13
  911. package/src/components/stream/overlays/registry.ts +0 -22
  912. package/src/components/stream/overlays/types.ts +0 -90
  913. package/src/components/stream/overlays/useOverlayLayout.ts +0 -218
  914. package/src/components/trajectory-format.ts +0 -50
  915. package/src/components/ui-badges.tsx +0 -109
  916. package/src/components/ui-switch.tsx +0 -57
  917. package/src/components/vector-browser-three.ts +0 -29
  918. package/src/config/branding.ts +0 -67
  919. package/src/config/config-catalog.ts +0 -1092
  920. package/src/config/config-field.tsx +0 -1924
  921. package/src/config/config-renderer.tsx +0 -734
  922. package/src/config/index.ts +0 -12
  923. package/src/config/ui-renderer.tsx +0 -1751
  924. package/src/config/ui-spec.ts +0 -256
  925. package/src/events/index.ts +0 -96
  926. package/src/hooks/useBugReport.tsx +0 -43
  927. package/src/hooks/useCanvasWindow.ts +0 -372
  928. package/src/hooks/useChatAvatarVoice.ts +0 -111
  929. package/src/hooks/useClickOutside.ts +0 -31
  930. package/src/hooks/useContextMenu.ts +0 -127
  931. package/src/hooks/useKeyboardShortcuts.ts +0 -86
  932. package/src/hooks/useLifoSync.ts +0 -143
  933. package/src/hooks/useMemoryMonitor.ts +0 -334
  934. package/src/hooks/useMiladyBar.ts +0 -594
  935. package/src/hooks/useRenderGuard.ts +0 -43
  936. package/src/hooks/useRetakeCapture.ts +0 -68
  937. package/src/hooks/useStreamPopoutNavigation.ts +0 -27
  938. package/src/hooks/useTimeout.ts +0 -37
  939. package/src/hooks/useVoiceChat.ts +0 -1442
  940. package/src/hooks/useWhatsAppPairing.ts +0 -123
  941. package/src/i18n/index.ts +0 -76
  942. package/src/i18n/locales/en.json +0 -1195
  943. package/src/i18n/locales/es.json +0 -1195
  944. package/src/i18n/locales/ko.json +0 -1195
  945. package/src/i18n/locales/pt.json +0 -1195
  946. package/src/i18n/locales/zh-CN.json +0 -1195
  947. package/src/i18n/messages.ts +0 -21
  948. package/src/navigation/index.ts +0 -286
  949. package/src/navigation.test.ts +0 -189
  950. package/src/onboarding-config.test.ts +0 -104
  951. package/src/onboarding-config.ts +0 -122
  952. package/src/platform/browser-launch.test.ts +0 -94
  953. package/src/platform/browser-launch.ts +0 -149
  954. package/src/platform/index.ts +0 -58
  955. package/src/platform/init.ts +0 -238
  956. package/src/platform/lifo.ts +0 -225
  957. package/src/providers/index.ts +0 -108
  958. package/src/shell-params.test.ts +0 -48
  959. package/src/shell-params.ts +0 -36
  960. package/src/state/AppContext.tsx +0 -6415
  961. package/src/state/internal.ts +0 -91
  962. package/src/state/onboarding-resume.test.ts +0 -135
  963. package/src/state/onboarding-resume.ts +0 -263
  964. package/src/state/parsers.test.ts +0 -124
  965. package/src/state/parsers.ts +0 -309
  966. package/src/state/persistence.ts +0 -379
  967. package/src/state/shell-routing.ts +0 -39
  968. package/src/state/types.ts +0 -724
  969. package/src/state/ui-preferences.ts +0 -3
  970. package/src/state/useApp.ts +0 -23
  971. package/src/state/vrm.ts +0 -108
  972. package/src/styles/anime.css +0 -6324
  973. package/src/styles/onboarding-game.css +0 -976
  974. package/src/types/index.ts +0 -715
  975. package/src/types/react-test-renderer.d.ts +0 -45
  976. package/src/utils/asset-url.ts +0 -110
  977. package/src/utils/assistant-text.ts +0 -172
  978. package/src/utils/clipboard.ts +0 -41
  979. package/src/utils/desktop-dialogs.ts +0 -80
  980. package/src/utils/eliza-globals.ts +0 -44
  981. package/src/utils/number-parsing.ts +0 -125
  982. package/src/utils/openExternalUrl.ts +0 -20
  983. package/src/utils/spoken-text.ts +0 -65
  984. package/src/utils/streaming-text.ts +0 -120
  985. package/src/voice/types.ts +0 -197
  986. package/src/wallet-rpc.ts +0 -176
  987. package/test/app/AppContext.pty-sessions.test.tsx +0 -143
  988. package/test/app/MessageContent.test.tsx +0 -366
  989. package/test/app/PermissionsOnboarding.test.tsx +0 -358
  990. package/test/app/PermissionsSection.test.tsx +0 -575
  991. package/test/app/advanced-trajectory-fine-tuning.e2e.test.ts +0 -396
  992. package/test/app/agent-activity-box.test.tsx +0 -132
  993. package/test/app/agent-transfer-lock.test.ts +0 -279
  994. package/test/app/api-client-electrobun-fallback.test.ts +0 -139
  995. package/test/app/api-client-electron-fallback.test.ts +0 -139
  996. package/test/app/api-client-timeout.test.ts +0 -75
  997. package/test/app/api-client-ws.test.ts +0 -98
  998. package/test/app/api-client.ws-max-reconnect.test.ts +0 -139
  999. package/test/app/api-client.ws-reconnect.test.ts +0 -157
  1000. package/test/app/app-context-autonomy-events.test.ts +0 -559
  1001. package/test/app/apps-page-view.test.ts +0 -114
  1002. package/test/app/apps-view.test.ts +0 -768
  1003. package/test/app/autonomous-workflows.e2e.test.ts +0 -765
  1004. package/test/app/autonomy-events.test.ts +0 -150
  1005. package/test/app/avatar-selector.test.tsx +0 -52
  1006. package/test/app/bsc-trade-panel.test.tsx +0 -134
  1007. package/test/app/bug-report-modal.test.tsx +0 -353
  1008. package/test/app/character-action-bar-visibility.test.ts +0 -70
  1009. package/test/app/character-customization.e2e.test.ts +0 -1384
  1010. package/test/app/character-save-journey.test.ts +0 -1245
  1011. package/test/app/chat-advanced-features.e2e.test.ts +0 -706
  1012. package/test/app/chat-composer.test.tsx +0 -181
  1013. package/test/app/chat-journey.test.ts +0 -1075
  1014. package/test/app/chat-language-header.test.ts +0 -64
  1015. package/test/app/chat-message.test.tsx +0 -222
  1016. package/test/app/chat-modal-view.test.tsx +0 -191
  1017. package/test/app/chat-routine-filter.test.ts +0 -96
  1018. package/test/app/chat-send-lock.test.ts +0 -1465
  1019. package/test/app/chat-stream-api-client.test.tsx +0 -390
  1020. package/test/app/chat-view-game-modal.test.tsx +0 -661
  1021. package/test/app/chat-view.test.tsx +0 -877
  1022. package/test/app/cloud-api.e2e.test.ts +0 -258
  1023. package/test/app/cloud-login-flow.e2e.test.ts +0 -494
  1024. package/test/app/cloud-login-lock.test.ts +0 -416
  1025. package/test/app/command-palette.test.tsx +0 -184
  1026. package/test/app/command-registry.test.ts +0 -75
  1027. package/test/app/companion-greeting-wave.test.tsx +0 -431
  1028. package/test/app/companion-scene-host.test.tsx +0 -85
  1029. package/test/app/companion-stale-conversation.test.tsx +0 -447
  1030. package/test/app/companion-view.test.tsx +0 -690
  1031. package/test/app/confirm-delete-control.test.ts +0 -79
  1032. package/test/app/confirm-modal.test.tsx +0 -219
  1033. package/test/app/connection-mode-persistence.test.ts +0 -411
  1034. package/test/app/connectors-ui.e2e.test.ts +0 -508
  1035. package/test/app/conversations-sidebar-game-modal.test.tsx +0 -265
  1036. package/test/app/conversations-sidebar.test.tsx +0 -185
  1037. package/test/app/custom-actions-smoke.test.ts +0 -387
  1038. package/test/app/custom-avatar-api-client.test.ts +0 -207
  1039. package/test/app/desktop-utils.test.ts +0 -145
  1040. package/test/app/electrobun-rpc-bridge.test.ts +0 -83
  1041. package/test/app/events.test.ts +0 -88
  1042. package/test/app/export-import-flows.e2e.test.ts +0 -700
  1043. package/test/app/fine-tuning-view.test.ts +0 -471
  1044. package/test/app/game-view-auth-session.test.tsx +0 -187
  1045. package/test/app/game-view.test.ts +0 -444
  1046. package/test/app/global-emote-overlay.test.tsx +0 -106
  1047. package/test/app/header-status.test.tsx +0 -149
  1048. package/test/app/i18n.test.ts +0 -152
  1049. package/test/app/inventory-bsc-view.test.ts +0 -940
  1050. package/test/app/knowledge-ui.e2e.test.ts +0 -762
  1051. package/test/app/knowledge-upload-helpers.test.ts +0 -124
  1052. package/test/app/lifecycle-lock.test.ts +0 -267
  1053. package/test/app/lifo-popout-utils.test.ts +0 -208
  1054. package/test/app/lifo-safe-endpoint.test.ts +0 -34
  1055. package/test/app/loading-screen.test.tsx +0 -45
  1056. package/test/app/memory-monitor.test.ts +0 -331
  1057. package/test/app/milady-bar-regression.test.tsx +0 -519
  1058. package/test/app/milady-bar-settings.test.tsx +0 -1056
  1059. package/test/app/milady-bar.test.tsx +0 -583
  1060. package/test/app/navigation.test.tsx +0 -22
  1061. package/test/app/onboarding-e2e-journey.test.ts +0 -1409
  1062. package/test/app/onboarding-finish-lock.test.ts +0 -676
  1063. package/test/app/onboarding-language.test.tsx +0 -160
  1064. package/test/app/onboarding-steps.test.tsx +0 -375
  1065. package/test/app/open-external-url.test.ts +0 -65
  1066. package/test/app/pages-navigation-smoke.e2e.test.ts +0 -646
  1067. package/test/app/pairing-lock.test.ts +0 -260
  1068. package/test/app/pairing-view.test.tsx +0 -74
  1069. package/test/app/permissions-section.test.ts +0 -432
  1070. package/test/app/plugin-bridge.test.ts +0 -109
  1071. package/test/app/plugins-ui.e2e.test.ts +0 -605
  1072. package/test/app/plugins-view-game-modal.test.tsx +0 -686
  1073. package/test/app/plugins-view-toggle-restart.test.ts +0 -129
  1074. package/test/app/provider-dropdown-default.test.tsx +0 -300
  1075. package/test/app/restart-banner.test.tsx +0 -205
  1076. package/test/app/retake-capture.test.ts +0 -84
  1077. package/test/app/sandbox-api-client.test.ts +0 -108
  1078. package/test/app/save-command-modal.test.tsx +0 -109
  1079. package/test/app/secrets-view.test.tsx +0 -92
  1080. package/test/app/settings-control-styles.test.tsx +0 -142
  1081. package/test/app/settings-reset.e2e.test.ts +0 -726
  1082. package/test/app/settings-sections.e2e.test.ts +0 -614
  1083. package/test/app/shared-format.test.ts +0 -44
  1084. package/test/app/shared-switch.test.ts +0 -69
  1085. package/test/app/shell-mode-switching.e2e.test.ts +0 -841
  1086. package/test/app/shell-mode-tab-memory.test.tsx +0 -58
  1087. package/test/app/shell-overlays.test.tsx +0 -50
  1088. package/test/app/shortcuts-overlay.test.tsx +0 -111
  1089. package/test/app/sse-interruption.test.ts +0 -122
  1090. package/test/app/startup-asset-missing.e2e.test.ts +0 -126
  1091. package/test/app/startup-backend-missing.e2e.test.ts +0 -126
  1092. package/test/app/startup-chat.e2e.test.ts +0 -323
  1093. package/test/app/startup-conversation-restore.test.tsx +0 -381
  1094. package/test/app/startup-failure-view.test.tsx +0 -103
  1095. package/test/app/startup-onboarding.e2e.test.ts +0 -712
  1096. package/test/app/startup-timeout.test.tsx +0 -80
  1097. package/test/app/startup-token-401.e2e.test.ts +0 -103
  1098. package/test/app/stream-helpers.test.ts +0 -46
  1099. package/test/app/stream-popout-navigation.test.tsx +0 -41
  1100. package/test/app/stream-status-bar.test.tsx +0 -89
  1101. package/test/app/theme-toggle.test.tsx +0 -40
  1102. package/test/app/training-api-client.test.ts +0 -128
  1103. package/test/app/trajectories-view.test.tsx +0 -220
  1104. package/test/app/triggers-api-client.test.ts +0 -77
  1105. package/test/app/triggers-navigation.test.ts +0 -113
  1106. package/test/app/triggers-view.e2e.test.ts +0 -675
  1107. package/test/app/update-channel-lock.test.ts +0 -259
  1108. package/test/app/vector-browser.async-cleanup.test.tsx +0 -367
  1109. package/test/app/vector-browser.e2e.test.ts +0 -653
  1110. package/test/app/vrm-stage.test.tsx +0 -351
  1111. package/test/app/vrm-viewer.test.tsx +0 -298
  1112. package/test/app/wallet-api-save-lock.test.ts +0 -299
  1113. package/test/app/wallet-hooks.test.ts +0 -405
  1114. package/test/app/wallet-ui-flows.e2e.test.ts +0 -556
  1115. package/test/avatar/asset-url.test.ts +0 -90
  1116. package/test/avatar/avatar-selector.test.ts +0 -173
  1117. package/test/avatar/mixamo-vrm-rig-map.test.ts +0 -111
  1118. package/test/avatar/voice-chat-streaming-text.test.ts +0 -96
  1119. package/test/avatar/voice-chat.test.ts +0 -391
  1120. package/test/browser-extension/README.md +0 -138
  1121. package/test/browser-extension/test-harness.ts +0 -499
  1122. package/test/capacitor-plugins.e2e.test.ts +0 -168
  1123. package/test/test-types.ts +0 -5
  1124. package/test/ui/command-palette-commands.test.ts +0 -57
  1125. package/test/ui/ui-renderer.test.ts +0 -39
  1126. package/test/utils/assistant-text.test.ts +0 -68
  1127. package/test/utils/eliza-globals.test.ts +0 -59
  1128. package/test/utils/package-exports.test.ts +0 -70
  1129. package/test/utils/streaming-text.test.ts +0 -89
  1130. package/tsconfig.build.json +0 -19
  1131. package/tsconfig.json +0 -20
  1132. package/tsconfig.typecheck.json +0 -12
  1133. /package/{src/api/index.ts → api/index.js} +0 -0
  1134. /package/{src/bridge/index.ts → bridge/index.js} +0 -0
  1135. /package/{src/components/TriggersView.tsx → components/TriggersView.js} +0 -0
  1136. /package/{src/hooks/index.ts → hooks/index.js} +0 -0
  1137. /package/{src/index.ts → index.js} +0 -0
  1138. /package/{src/state/index.ts → state/index.js} +0 -0
  1139. /package/{src/styles → styles}/base.css +0 -0
  1140. /package/{src/styles → styles}/styles.css +0 -0
  1141. /package/{src/styles → styles}/xterm.css +0 -0
  1142. /package/{src/utils/index.ts → utils/index.js} +0 -0
  1143. /package/{src/voice/index.ts → voice/index.js} +0 -0
@@ -0,0 +1,1239 @@
1
+ {
2
+ "common.retry": "Retry",
3
+ "common.loading": "Loading",
4
+ "common.export": "Export",
5
+ "common.exporting": "Exporting...",
6
+ "common.clearAll": "Clear All",
7
+ "common.clearing": "Clearing...",
8
+ "common.cancel": "Cancel",
9
+ "common.deleteAll": "Delete All",
10
+ "common.on": "ON",
11
+ "common.off": "OFF",
12
+ "nav.chat": "Chat",
13
+ "nav.companion": "Companion",
14
+ "nav.character": "Character",
15
+ "nav.talents": "Talents",
16
+ "nav.wallets": "Wallets",
17
+ "nav.channels": "Channels",
18
+ "nav.knowledge": "Knowledge",
19
+ "nav.plugins": "Plugins",
20
+ "nav.social": "Connectors",
21
+ "nav.apps": "Apps",
22
+ "nav.settings": "Settings",
23
+ "nav.heartbeats": "Heartbeats",
24
+ "nav.advanced": "Advanced",
25
+ "nav.stream": "Stream",
26
+ "nav.cloud": "Cloud",
27
+ "header.cloudDisconnected": "Cloud disconnected",
28
+ "header.nativeMode": "Native Mode",
29
+ "header.companionMode": "Companion Mode",
30
+ "header.switchToNative": "Switch to Native",
31
+ "pairing.expiresIn": "Expires in {{seconds}} seconds",
32
+ "chat.inputPlaceholder": "Type a message...",
33
+ "chat.listening": "Listening...",
34
+ "chat.agentStarting": "Agent starting...",
35
+ "chat.send": "Send",
36
+ "chat.stopGeneration": "Stop generation",
37
+ "chat.stopSpeaking": "Stop speaking",
38
+ "chat.stopListening": "Stop listening",
39
+ "chat.voiceInput": "Voice input",
40
+ "chat.mode.label": "Mode",
41
+ "chat.mode.fast": "Fast",
42
+ "chat.mode.fastHint": "Lower latency with a compact profile.",
43
+ "chat.mode.pro": "Pro",
44
+ "chat.mode.proHint": "Full context for more capable reasoning.",
45
+ "chat.mode.voiceFast": "Voice always uses Fast.",
46
+ "conversations.newChat": "+ New Chat",
47
+ "conversations.newChatTitle": "New Chat",
48
+ "conversations.none": "No conversations yet",
49
+ "conversations.justNow": "just now",
50
+ "conversations.minutesAgo": "{{count}}m ago",
51
+ "conversations.hoursAgo": "{{count}}h ago",
52
+ "conversations.daysAgo": "{{count}}d ago",
53
+ "conversations.rename": "Rename conversation",
54
+ "conversations.delete": "Delete conversation",
55
+ "conversations.chats": "Chats",
56
+ "conversations.closePanel": "Close panel",
57
+ "conversations.deleteConfirm": "Delete?",
58
+ "conversations.deleteYes": "Yes",
59
+ "conversations.deleteNo": "No",
60
+ "knowledge.ui.searchPlaceholder": "Search knowledge...",
61
+ "knowledge.ui.searching": "Searching...",
62
+ "knowledge.ui.search": "Search",
63
+ "elizaclouddashboard.ScaleYourAgents": "Scale your agents to the cloud for 24/7 autonomy, advanced reasoning, and seamless cross-platform presence.",
64
+ "elizaclouddashboard.Connecting": "Connecting...",
65
+ "elizaclouddashboard.ConnectElizaCloud": "Connect Eliza Cloud",
66
+ "elizaclouddashboard.NewToElizaCloud": "New to Eliza Cloud?",
67
+ "elizaclouddashboard.LearnMore": "Learn more",
68
+ "elizaclouddashboard.CloudDashboard": "Cloud Dashboard",
69
+ "elizaclouddashboard.ManageInstance": "Manage your Eliza Cloud instance and resources.",
70
+ "elizaclouddashboard.Refresh": "Refresh",
71
+ "elizaclouddashboard.Disconnect": "Disconnect",
72
+ "elizaclouddashboard.Disconnecting": "Disconnecting...",
73
+ "elizaclouddashboard.CloudAgents": "Cloud Agents",
74
+ "elizaclouddashboard.CloudAgentsDesc": "Your autonomous agents running on Eliza Cloud infrastructure.",
75
+ "elizaclouddashboard.DeployNewAgent": "Deploy New Agent",
76
+ "elizaclouddashboard.InitializeInstance": "Initialize a new autonomous cloud instance.",
77
+ "elizaclouddashboard.UsageMetrics": "Usage & Metrics",
78
+ "elizaclouddashboard.UsageMetricsDesc": "Real-time resource utilization across your cloud instances.",
79
+ "elizaclouddashboard.MetricsPlaceholder": "Usage metrics will appear here once agents are deployed.",
80
+ "elizaclouddashboard.CreditWallet": "Credit Wallet",
81
+ "elizaclouddashboard.AvailableBalance": "Available Balance",
82
+ "elizaclouddashboard.TopUpCredits": "Top Up Credits",
83
+ "elizaclouddashboard.History": "History",
84
+ "elizaclouddashboard.Pricing": "Pricing",
85
+ "elizaclouddashboard.AccountDetails": "Account Details",
86
+ "elizaclouddashboard.CloudUserID": "Cloud User ID",
87
+ "elizaclouddashboard.SecurityStatus": "Security Status",
88
+ "elizaclouddashboard.Secure": "Secure",
89
+ "elizaclouddashboard.AdvancedDashboard": "Advanced External Dashboard",
90
+ "elizaclouddashboard.CloudBilling": "Cloud Billing",
91
+ "elizaclouddashboard.CloudBillingDesc": "Top up credits, manage auto top-up, and keep billing inside Settings.",
92
+ "elizaclouddashboard.InAppBillingReady": "All available Eliza Cloud billing APIs are surfaced here, without bouncing you through the dashboard first.",
93
+ "elizaclouddashboard.CreditsHealthy": "Healthy",
94
+ "elizaclouddashboard.CreditsLow": "Running Low",
95
+ "elizaclouddashboard.CreditsCritical": "Critical",
96
+ "elizaclouddashboard.AutoTopUp": "Auto Top-Up",
97
+ "elizaclouddashboard.AutoTopUpDesc": "Keep credits topped up automatically when your balance dips below a threshold.",
98
+ "elizaclouddashboard.ToggleAutoTopUp": "Toggle auto top-up",
99
+ "elizaclouddashboard.AutoTopUpPaymentReady": "A saved payment method is on file, so auto top-up can be enabled.",
100
+ "elizaclouddashboard.AutoTopUpNeedsPaymentMethod": "Complete a card checkout once to save a payment method before enabling auto top-up.",
101
+ "elizaclouddashboard.AutoTopUpThreshold": "Threshold",
102
+ "elizaclouddashboard.AutoTopUpAmount": "Top-up Amount",
103
+ "elizaclouddashboard.AutoTopUpLimits": "Amount ${{minAmount}}-${{maxAmount}} · threshold ${{minThreshold}}-${{maxThreshold}}",
104
+ "elizaclouddashboard.SaveBillingSettings": "Save Billing Settings",
105
+ "elizaclouddashboard.TopUpCreditsDesc": "Card checkout opens Stripe securely, while crypto checkout uses the cloud payment provider directly from this panel.",
106
+ "elizaclouddashboard.OpenBrowserBilling": "Open browser billing",
107
+ "elizaclouddashboard.CustomAmount": "Custom Amount",
108
+ "elizaclouddashboard.PayWithCard": "Pay with Card",
109
+ "elizaclouddashboard.PayWithCrypto": "Pay with Crypto",
110
+ "elizaclouddashboard.CheckoutProviderNote": "Stripe is still hosted today because Eliza Cloud returns hosted checkout URLs. Crypto quotes stay in-app and can open the hosted payment page when needed.",
111
+ "elizaclouddashboard.CryptoTopUp": "Crypto Top-Up",
112
+ "elizaclouddashboard.CryptoTopUpDesc": "Generate crypto payment links and pay from the agent wallet when the quote includes raw transfer instructions.",
113
+ "elizaclouddashboard.AgentWalletFunded": "Agent wallet detected with funds. Request a quote, then pay from the wallet when the cloud quote includes direct transfer details.",
114
+ "elizaclouddashboard.AgentWalletDetected": "Agent wallet detected. Fund the wallet or load balances before paying with crypto.",
115
+ "elizaclouddashboard.NoAgentWalletDetected": "No agent wallet detected yet. Generate or import one in Settings before using crypto top-ups.",
116
+ "elizaclouddashboard.CryptoQuoteReady": "Crypto quote ready",
117
+ "elizaclouddashboard.OpenHostedCryptoCheckout": "Open Hosted Crypto Checkout",
118
+ "elizaclouddashboard.PayFromAgentWallet": "Pay from Agent Wallet",
119
+ "elizaclouddashboard.CryptoQuoteHint": "Request a crypto quote to fetch the hosted payment link from Eliza Cloud. Direct agent-wallet payment only enables when the quote includes raw transfer details.",
120
+ "elizaclouddashboard.MinimumTopUp": "Minimum top-up: ${{amount}}",
121
+ "elizaclouddashboard.Enabled": "Enabled",
122
+ "elizaclouddashboard.Disabled": "Disabled",
123
+ "elizaclouddashboard.ElizaCloudNotConnected": "Eliza Cloud is not connected.",
124
+ "settings.language": "Language",
125
+ "settings.languageSyncFailed": "Language changed locally, but cloud sync failed.",
126
+ "settings.customizeExperience": "Customize your experience",
127
+ "settings.searchPlaceholder": "Search settings...",
128
+ "settings.exportAgentShort": "Backup all data",
129
+ "settings.importAgentShort": "Restore from backup",
130
+ "settings.dangerZone": "Danger Zone",
131
+ "settings.versionPrefix": "Version",
132
+ "settings.checking": "Checking...",
133
+ "settings.checkNow": "Check Now",
134
+ "settings.updateAvailable": "Update available",
135
+ "settings.lastChecked": "Last checked:",
136
+ "settings.import": "Import",
137
+ "settings.export": "Export",
138
+ "settings.resetAgent": "Reset Agent",
139
+ "settings.resetAgentHint": "Wipe all config, memory, and data. Returns to the onboarding wizard.",
140
+ "settings.resetConfirmMessage": "Are you sure you want to reset all settings and data? This cannot be undone and you will return to onboarding.",
141
+ "settings.resetEverything": "Reset Everything",
142
+ "settings.exportAgent": "Export Agent",
143
+ "settings.importAgent": "Import Agent",
144
+ "wallet.portfolio": "Portfolio",
145
+ "wallet.receive": "Receive",
146
+ "wallet.addressCopied": "Address copied.",
147
+ "wallet.status.connectedTitle": "Wallet connected",
148
+ "wallet.status.noWallet": "No Wallet",
149
+ "wallet.status.noWalletTitle": "No onchain wallet detected",
150
+ "wallet.status.tradeReady": "Trade Ready",
151
+ "wallet.status.tradeReadyTitle": "Ready for preflight and quote",
152
+ "wallet.status.tradeNotReady": "Trade Not Ready",
153
+ "wallet.status.tradeNeedGasTitle": "Need BNB gas",
154
+ "wallet.status.tradeFeedRequired": "Market feed required",
155
+ "wallet.txStatus.pending": "Pending",
156
+ "wallet.failedFetchQuote": "Failed to fetch quote.",
157
+ "wallet.noDataRefresh": "No tokens yet!",
158
+ "wallet.noTokensFound": "No tokens yet. Send your agent some tokens!",
159
+ "wallet.emptyTokensCta": "Use the wallet addresses below to fund this agent.",
160
+ "wallet.noNftsFound": "No NFTs found.",
161
+ "wallet.noNftData": "No NFT data.",
162
+ "wallet.noImage": "No image",
163
+ "wallet.value": "Value",
164
+ "wallet.chain": "Chain",
165
+ "wallet.name": "Name",
166
+ "wallet.sort": "Sort",
167
+ "wallet.tokens": "Tokens",
168
+ "wallet.nfts": "NFTs",
169
+ "wallet.all": "All",
170
+ "wallet.table.token": "Token",
171
+ "wallet.table.balance": "Balance",
172
+ "wallet.loadingBalances": "Loading balances...",
173
+ "wallet.loadingNfts": "Loading NFTs...",
174
+ "wallet.setup.rpcNotConfigured": "BSC RPC is not configured.",
175
+ "wallet.noOnchainWallet": "No onchain wallet yet. Log in with Privy first.",
176
+ "wallet.noOnchainWalletHint": "After login, your managed wallet appears automatically.",
177
+ "wallet.manual": "Manual",
178
+ "wallet.remove": "Remove",
179
+ "wallet.removeManualTitle": "Remove manual token",
180
+ "wallet.tokenRemovedManual": "Token removed from watchlist.",
181
+ "wallet.copyEvmAddress": "Copy EVM address",
182
+ "wallet.copySolanaAddress": "Copy Solana address",
183
+ "wallet.enableIt": "Enable it",
184
+ "companion.avatarPreviewAlt": "Avatar preview",
185
+ "companion.switchToNativeUi": "Switch to native UI",
186
+ "common.refresh": "Refresh",
187
+ "game.backToApps": "Back to Apps",
188
+ "game.openInNewTab": "Open in New Tab",
189
+ "game.stop": "Stop",
190
+ "wallet.setup.configureRpc": "Configure RPC",
191
+ "apikeyconfig.configured": "configured",
192
+ "appsview.EmbeddedAgents": "Embedded agents (",
193
+ "appsview.SelectEmbeddedAgen": "Select embedded agent",
194
+ "appsview.Character": "Character:",
195
+ "appsview.Health": "| Health:",
196
+ "appsview.Position": "| Position:",
197
+ "appsview.CreateEmbeddedAgen": "Create Embedded Agent",
198
+ "appsview.NoScriptedRole": "No scripted role",
199
+ "appsview.AutoStart": "Auto start",
200
+ "appsview.SendMessage": "Send Message",
201
+ "appsview.SendCommand": "Send Command",
202
+ "appsview.GoalQuickActions": "Goal + Quick Actions",
203
+ "appsview.Nearby": "Nearby:",
204
+ "appsview.ActiveGameSession": "Active Game Session",
205
+ "appsview.ResumeInFullScree": "Resume in full-screen or open the viewer in a new tab.",
206
+ "appsview.ResumeFullscreen": "Resume Fullscreen",
207
+ "appsview.OpenInNewTab": "Open in New Tab",
208
+ "appsview.Back": "Back",
209
+ "appsview.Active": "Active",
210
+ "appsview.Inactive": "Inactive",
211
+ "appsview.ViewActiveSession": "View Active Session",
212
+ "appsview.OpenViewerInNewT": "Open Viewer in New Tab",
213
+ "appsview.LaunchType": "Launch type:",
214
+ "appsview.LatestVersion": "Latest version:",
215
+ "appsview.LaunchURL": "Launch URL:",
216
+ "appsview.Repository": "Repository:",
217
+ "appsview.Capabilities": "Capabilities",
218
+ "appsview.ViewerConfig": "Viewer Config",
219
+ "appsview.URL": "URL:",
220
+ "appsview.postMessageAuth": "postMessage auth:",
221
+ "appsview.Sandbox": "Sandbox:",
222
+ "appsview.EmbeddedAgentsCom": "Embedded agents, commands, and telemetry.",
223
+ "appsview.Refresh": "Refresh",
224
+ "appsview.active": "active",
225
+ "appsview.LoadingApps": "Loading apps...",
226
+ "appsview.CharacterID": "Character ID",
227
+ "appsview.SaySomethingToSel": "Say something to selected agent...",
228
+ "appsview.Target000": "{\"target\":[0,0,0]}",
229
+ "appsview.SearchApps": "Search apps...",
230
+ "avatarselector.UploadVRM": "Upload VRM",
231
+ "avatarselector.dropVrm": "drop .vrm",
232
+ "avatarselector.UploadCustomVrm": "Upload custom .vrm (click or drag)",
233
+ "bsctradepanel.ViewTx": "View tx",
234
+ "bsctradepanel.Pending": "Pending...",
235
+ "bsctradepanel.RefreshStatus": "Refresh Status",
236
+ "bsctradepanel.Confirmations": "Confirmations:",
237
+ "bsctradepanel.RequiresWalletSign": "Requires wallet signature to complete.",
238
+ "bsctradepanel.CopyApprovalTX": "Copy Approval TX",
239
+ "bsctradepanel.CopySwapTX": "Copy Swap TX",
240
+ "bsctradepanel.BNB": "BNB:",
241
+ "bsctradepanel.Preflight": "Preflight",
242
+ "bsctradepanel.Quote": "Quote",
243
+ "bsctradepanel.BNB1": "BNB",
244
+ "bsctradepanel.Buy": "Buy",
245
+ "bsctradepanel.Sell": "Sell",
246
+ "bsctradepanel.LatestQuote": "Latest quote",
247
+ "bsctradepanel.trade": "trade?",
248
+ "bsctradepanel.ExecuteTrade": "Execute Trade",
249
+ "bsctradepanel.TokenContractAddre": "Token contract address (0x...)",
250
+ "bugreportmodal.BugReportSubmitted": "Bug Report Submitted",
251
+ "bugreportmodal.Times": "X",
252
+ "bugreportmodal.YourBugReportHas": "Your bug report has been submitted successfully.",
253
+ "bugreportmodal.Close": "Close",
254
+ "bugreportmodal.ReportABug": "Report a Bug",
255
+ "bugreportmodal.StepsToReproduce": "Steps to Reproduce",
256
+ "bugreportmodal.ExpectedBehavior": "Expected Behavior",
257
+ "bugreportmodal.ActualBehavior": "Actual Behavior",
258
+ "bugreportmodal.Environment": "Environment",
259
+ "bugreportmodal.Select": "Select...",
260
+ "bugreportmodal.NodeVersion": "Node Version",
261
+ "bugreportmodal.ModelProvider": "Model Provider",
262
+ "bugreportmodal.Logs": "Logs",
263
+ "bugreportmodal.DescribeTheIssueY": "Describe the issue you encountered.",
264
+ "bugreportmodal.DescribeTheExpecte": "Describe the expected result.",
265
+ "bugreportmodal.DescribeTheActual": "Describe the actual result.",
266
+ "bugreportmodal.22X": "22.x",
267
+ "bugreportmodal.AnthropicOpenAI": "Anthropic / OpenAI / Ollama",
268
+ "bugreportmodal.PasteRelevantError": "Paste relevant error output or logs",
269
+ "characterview.reload": "Reload",
270
+ "characterview.import": "Import",
271
+ "characterview.export": "Export",
272
+ "characterview.importCharacterJso": "Import character JSON",
273
+ "characterview.exportAsCharacter": "Export character JSON",
274
+ "characterview.customize": "Customize",
275
+ "characterview.backToCharacterSelect": "Back to Character Select",
276
+ "characterview.loadingCharacterDa": "loading character data...",
277
+ "characterview.selectAVoice": "Select a voice",
278
+ "characterview.core": "Core",
279
+ "characterview.style": "Style",
280
+ "characterview.examples": "Examples",
281
+ "characterview.aboutMe": "About Me",
282
+ "characterview.directionsAndThing": "Directions & Things to Remember",
283
+ "characterview.StyleRules": "Style Rules",
284
+ "characterview.RegisterYourAgent": "Register your agent on Ethereum mainnet to claim your ERC-8004\n identity NFT.",
285
+ "characterview.Registered": "Registered",
286
+ "characterview.Token": "Token #",
287
+ "characterview.OnChainName": "On-chain name \"",
288
+ "characterview.DiffersFrom": "\" differs from \"",
289
+ "characterview.adjectives": "adjectives",
290
+ "characterview.generating": "generating...",
291
+ "characterview.regenerate": "regenerate",
292
+ "characterview.generate": "generate",
293
+ "characterview.nameLabel": "NAME",
294
+ "characterview.characterNamePlaceholder": "Character name",
295
+ "characterview.systemPromptLabel": "SYSTEM PROMPT",
296
+ "characterview.companionMode": "Companion Mode",
297
+ "characterview.addStyleEntry": "+ add",
298
+ "characterview.registerNow": "register now",
299
+ "characterview.registering": "registering...",
300
+ "characterview.syncToChain": "sync to chain",
301
+ "characterview.syncing": "syncing...",
302
+ "characterview.reset": "Reset",
303
+ "characterview.saving": "saving...",
304
+ "characterview.save": "Save",
305
+ "characterview.selectCharacter": "Select Character",
306
+ "characterview.errorNameRequired": "Character name is required before saving.",
307
+ "characterview.errorVoiceSaveFailed": "Failed to save voice settings.",
308
+ "characterview.errorChatExamplesParse": "Generated chat examples could not be parsed. Try again.",
309
+ "characterview.errorChatExamplesGenerate": "Failed to generate chat examples: {{message}}",
310
+ "characterview.errorChatExamplesGenerateFallback": "Failed to generate chat examples.",
311
+ "characterview.unlockVoiceSelection": "Unlock voice selection",
312
+ "characterview.lockVoiceSelection": "Lock voice selection",
313
+ "characterview.voicePinnedHint": "Voice stays pinned when switching characters",
314
+ "characterview.lockVoiceHint": "Lock current voice",
315
+ "characterview.stopVoicePreview": "Stop voice preview",
316
+ "characterview.previewVoice": "Preview voice",
317
+ "characterview.user": "user",
318
+ "characterview.agent": "agent",
319
+ "characterview.addSharedRule": "Add shared rule",
320
+ "characterview.addChatRule": "Add chat rule",
321
+ "characterview.addPostRule": "Add post rule",
322
+ "characterview.noSharedRules": "No shared rules yet.",
323
+ "characterview.noChatRules": "No chat rules yet.",
324
+ "characterview.noPostRules": "No post rules yet.",
325
+ "characterview.rule": "rule",
326
+ "characterview.rules": "rules",
327
+ "characterview.voiceGroupFemale": "Female",
328
+ "characterview.voiceGroupMale": "Male",
329
+ "characterview.voiceGroupCharacter": "Character",
330
+ "chatmessage.ResponseInterrupte": "(Response interrupted)",
331
+ "chatmessage.StartAConversation": "Start a conversation",
332
+ "chatmessage.SendAMessageTo": "Send a message to",
333
+ "chatmessage.toBeginChattingY": "to begin chatting. You can also drag and\n drop images or use voice input.",
334
+ "chatmessage.RetryMessage": "Retry message",
335
+ "chatmessage.DeleteMessage": "Delete message",
336
+ "chatview.SilenceEndFirstTo": "Silence end→first token:",
337
+ "chatview.msEndVoiceStart": "ms · end→voice start:",
338
+ "chatview.msFirst": "ms\n · first sentence:",
339
+ "chatview.RemoveImage": "Remove image",
340
+ "chatview.AttachImage": "Attach image",
341
+ "cloudsourcecontrols.Offline": "Offline",
342
+ "codingagentsettingssection.LoadingCodingAgent": "Loading coding agent configuration...",
343
+ "codingagentsettingssection.AgentSelectionStra": "Agent Selection Strategy",
344
+ "codingagentsettingssection.Fixed": "Fixed",
345
+ "codingagentsettingssection.RankedAutoSelect": "Ranked (auto-select best performer)",
346
+ "codingagentsettingssection.DefaultAgentType": "Default Agent Type",
347
+ "codingagentsettingssection.AgentUsedWhenNoE": "Agent used when no explicit type is specified in a spawn request.",
348
+ "codingagentsettingssection.DefaultPermissionL": "Default Permission Level",
349
+ "codingagentsettingssection.Provider": "Provider",
350
+ "codingagentsettingssection.Anthropic": "Anthropic",
351
+ "codingagentsettingssection.OpenAI": "OpenAI",
352
+ "codingagentsettingssection.Google": "Google",
353
+ "codingagentsettingssection.PowerfulModel": "Powerful Model",
354
+ "codingagentsettingssection.Default": "Default",
355
+ "codingagentsettingssection.FastModel": "Fast Model",
356
+ "commandpalette.NoCommandsFound": "No commands found",
357
+ "commandpalette.TypeToSearchComma": "Type to search commands...",
358
+ "configpageview.ConnectedToElizaC": "Connected to Eliza Cloud",
359
+ "configpageview.Credits": "Credits:",
360
+ "configpageview.TopUp": "Top up",
361
+ "configpageview.RequiresElizaCloud": "Requires Eliza Cloud connection",
362
+ "configpageview.CloudServices": "Cloud Services",
363
+ "configpageview.RestartRequiredFor": "Restart required for changes to take effect",
364
+ "configpageview.ChooseWhichElizaCl": "Choose which Eliza Cloud services to use. Disable inference to use your\n own AI provider keys instead.",
365
+ "configpageview.Config": "Config",
366
+ "configpageview.WalletProvidersAnd": "Wallet providers and secrets.",
367
+ "configpageview.WalletAmpRPC": "Wallet & RPC",
368
+ "configpageview.SecretsVault": "Secrets vault",
369
+ "configpageview.Secrets": "Secrets",
370
+ "configpageview.SecretsVault1": "Secrets Vault",
371
+ "configpageview.BSC": "BSC",
372
+ "configpageview.EVM": "EVM",
373
+ "configpageview.Solana": "Solana",
374
+ "configsavefooter.Saved": "Saved!",
375
+ "connectionfailedbanner.ReconnectingAtt": "Reconnecting... (attempt",
376
+ "connectionfailedbanner.ConnectionLostAfte": "Connection lost after",
377
+ "connectionfailedbanner.attemptsRealTime": "attempts. Real-time updates are paused.",
378
+ "customactioneditor.DescribeWhatYouWa": "Describe what you want this action to do",
379
+ "customactioneditor.TheAgentWillGener": "The agent will generate the action config for you to review and\n edit.",
380
+ "customactioneditor.AliasesOptional": "Aliases (optional)",
381
+ "customactioneditor.CommaSeparatedAlte": "Comma-separated alternatives the agent can match against.",
382
+ "customactioneditor.HandlerType": "Handler Type",
383
+ "customactioneditor.HeadersOptional": "Headers (optional)",
384
+ "customactioneditor.Add": "+ Add",
385
+ "customactioneditor.BodyTemplateOptio": "Body Template (optional)",
386
+ "customactioneditor.CommandTemplate": "Command Template",
387
+ "customactioneditor.forParameterSubsti": "for parameter substitution",
388
+ "customactioneditor.JavaScriptCode": "JavaScript Code",
389
+ "customactioneditor.Parameters": "Parameters",
390
+ "customactioneditor.AddParameter": "+ Add Parameter",
391
+ "customactioneditor.Required": "Required",
392
+ "customactioneditor.TestAction": "Test Action",
393
+ "customactioneditor.Error": "Error:",
394
+ "customactioneditor.Duration": "Duration:",
395
+ "customactioneditor.eGCheckIfAWebs": "e.g. Check if a website is up and return status",
396
+ "customactioneditor.MYACTION": "MY_ACTION",
397
+ "customactioneditor.WhatDoesThisActio": "What does this action do?",
398
+ "customactioneditor.SYNONYMONESYNONYM": "SYNONYM_ONE, SYNONYM_TWO",
399
+ "customactioneditor.httpsApiExample": "https://api.example.com/{{param}}",
400
+ "customactioneditor.HeaderName": "Header-Name",
401
+ "customactioneditor.valueOrParam": "value or {{param}}",
402
+ "customactioneditor.echoMessage": "echo {{message}} > /tmp/output.txt",
403
+ "customactioneditor.AvailableParams": "// Available: params.paramName, fetch()\\nreturn { result: params.input };",
404
+ "customactioneditor.paramName": "paramName",
405
+ "customactionspanel.CustomActions": "Custom Actions",
406
+ "customactionspanel.action": "action",
407
+ "customactionspanel.enabled": "enabled",
408
+ "customactionspanel.NewCustomAction": "+ New Custom Action",
409
+ "customactionspanel.LoadingYourActions": "Loading your actions...",
410
+ "customactionspanel.SearchByNameDesc": "Search by name, description, alias...",
411
+ "customactionspanel.EditAction": "Edit action",
412
+ "customactionspanel.DeleteAction": "Delete action",
413
+ "customactionsview.LoadingActions": "Loading actions...",
414
+ "customactionsview.Export": "Export",
415
+ "customactionsview.CreateAction": "Create Action",
416
+ "customactionsview.parameter": "parameter",
417
+ "customactionsview.Enabled": "Enabled",
418
+ "customactionsview.SearchActionsByNa": "Search actions by name or description...",
419
+ "databasepageview.Databases": "Databases",
420
+ "databasepageview.BrowseAndQueryAge": "Browse and query agent data, media assets, and vectors.",
421
+ "databasepageview.Tables": "Tables",
422
+ "databasepageview.Media": "Media",
423
+ "databasepageview.Vectors": "Vectors",
424
+ "databaseview.CellValue": "Cell Value",
425
+ "databaseview.NULL": "NULL",
426
+ "databaseview.row": "row",
427
+ "databaseview.Prev": "Prev",
428
+ "databaseview.Next": "Next",
429
+ "databaseview.TableEditor": "Table Editor",
430
+ "databaseview.SQLEditor": "SQL Editor",
431
+ "databaseview.Refresh": "Refresh",
432
+ "databaseview.SelectATable": "Select a table",
433
+ "databaseview.ChooseATableFrom": "Choose a table from the sidebar",
434
+ "databaseview.Tables": "Tables",
435
+ "databaseview.tables": "tables",
436
+ "databaseview.Connecting": "Connecting...",
437
+ "databaseview.DatabaseNotAvailab": "Database not available",
438
+ "databaseview.TheDatabaseViewer": "The database viewer is only available when the local agent runtime is running.",
439
+ "databaseview.FilterTables": "Filter tables...",
440
+ "databaseview.Loading": "Loading...",
441
+ "databaseview.showSidebar": "Show sidebar",
442
+ "databaseview.hideSidebar": "Hide sidebar",
443
+ "databaseview.columns": "columns",
444
+ "databaseview.TableIsEmpty": "Table is empty",
445
+ "databaseview.SELECTFROMMemori": "SELECT * FROM memories LIMIT 100;",
446
+ "databaseview.runQuery": "Run Query",
447
+ "databaseview.Enter": "Enter",
448
+ "databaseview.RecentQueries": "Recent Queries",
449
+ "databaseview.QueryReturnedNoRo": "Query returned no rows",
450
+ "emotepicker.Emotes": "Emotes",
451
+ "emotepicker.NoEmotesFound": "No emotes found",
452
+ "emotepicker.SearchEmotes": "Search emotes...",
453
+ "finetuningview.LoadingFineTuning": "Loading fine-tuning workspace...",
454
+ "finetuningview.FineTuning": "Fine-Tuning",
455
+ "finetuningview.BuildDatasetsFrom": "Build datasets from real trajectories, run training jobs, then\n import and activate models.",
456
+ "finetuningview.RefreshAll": "Refresh All",
457
+ "finetuningview.Status": "Status",
458
+ "finetuningview.Runtime": "Runtime:",
459
+ "finetuningview.RunningJobs": "Running Jobs:",
460
+ "finetuningview.QueuedJobs": "Queued Jobs:",
461
+ "finetuningview.Datasets": "Datasets:",
462
+ "finetuningview.Models": "Models:",
463
+ "finetuningview.FailedJobs": "Failed Jobs:",
464
+ "finetuningview.Trajectories": "Trajectories",
465
+ "finetuningview.trajectoryRowsAvai": "trajectory rows available.",
466
+ "finetuningview.LatestTrajectories": "Latest trajectories",
467
+ "finetuningview.NoTrajectoriesFoun": "No trajectories found yet.",
468
+ "finetuningview.Calls": "Calls:",
469
+ "finetuningview.Reward": "· Reward:",
470
+ "finetuningview.SelectedTrajectory": "Selected trajectory",
471
+ "finetuningview.LoadingTrajectoryD": "Loading trajectory detail...",
472
+ "finetuningview.ChooseATrajectory": "Choose a trajectory to inspect.",
473
+ "finetuningview.Trajectory": "Trajectory:",
474
+ "finetuningview.Agent": "Agent:",
475
+ "finetuningview.Reward1": "Reward:",
476
+ "finetuningview.Datasets1": "Datasets",
477
+ "finetuningview.RefreshDatasets": "Refresh Datasets",
478
+ "finetuningview.NoDatasetsYet": "No datasets yet.",
479
+ "finetuningview.samples": "samples ·",
480
+ "finetuningview.trajectories": "trajectories",
481
+ "finetuningview.TrainingJobs": "Training Jobs",
482
+ "finetuningview.AutoBuildDatasetF": "Auto-build dataset from trajectories",
483
+ "finetuningview.cpu": "cpu",
484
+ "finetuningview.mlx": "mlx",
485
+ "finetuningview.cuda": "cuda",
486
+ "finetuningview.RefreshJobs": "Refresh Jobs",
487
+ "finetuningview.ActiveJob": "Active job:",
488
+ "finetuningview.NoJobsYet": "No jobs yet.",
489
+ "finetuningview.SelectedJobLogs": "Selected job logs",
490
+ "finetuningview.SelectAJobToInsp": "Select a job to inspect logs.",
491
+ "finetuningview.Status1": "Status:",
492
+ "finetuningview.Dataset": "Dataset:",
493
+ "finetuningview.TrainedModels": "Trained Models",
494
+ "finetuningview.NoTrainedModelsYe": "No trained models yet.",
495
+ "finetuningview.backend": "backend:",
496
+ "finetuningview.benchmark": "benchmark:",
497
+ "finetuningview.ModelActions": "Model actions",
498
+ "finetuningview.SelectAModelToIm": "Select a model to import or activate.",
499
+ "finetuningview.Model": "Model:",
500
+ "finetuningview.AdapterPath": "Adapter path:",
501
+ "finetuningview.LiveTrainingEvents": "Live Training Events",
502
+ "finetuningview.NoLiveEventsYet": "No live events yet. Start a job to stream progress here.",
503
+ "finetuningview.LimitTrajectories": "Limit trajectories (e.g. 250)",
504
+ "finetuningview.MinLLMCallsPerTr": "Min LLM calls per trajectory",
505
+ "finetuningview.BaseModelOptional": "Base model (optional)",
506
+ "finetuningview.IterationsOptional": "Iterations (optional)",
507
+ "finetuningview.BatchSizeOptional": "Batch size (optional)",
508
+ "finetuningview.LearningRateOptio": "Learning rate (optional)",
509
+ "finetuningview.OllamaModelNameO": "Ollama model name (optional)",
510
+ "finetuningview.BaseModelForOllam": "Base model for Ollama (optional)",
511
+ "finetuningview.OllamaURL": "Ollama URL",
512
+ "finetuningview.ProviderModelEG": "Provider model (e.g. \"ollama/my-model\")",
513
+ "gameviewoverlay.Expand": "Expand",
514
+ "gameviewoverlay.ExpandBackToApps": "Expand back to Apps tab",
515
+ "gameviewoverlay.CloseOverlay": "Close overlay",
516
+ "header.Cloud": "Cloud",
517
+ "header.CloudCreditsBalanc": "Cloud credits balance",
518
+ "header.elizaCloudConnected": "Eliza Cloud connected",
519
+ "knowledgeview.Documents": "Documents",
520
+ "knowledgeview.ChooseFiles": "Choose Files",
521
+ "knowledgeview.ChooseFolder": "Choose Folder",
522
+ "knowledgeview.AddFromURL": "Add from URL",
523
+ "knowledgeview.IncludeAIImageDes": "Process Images",
524
+ "knowledgeview.PasteAURLToImpor": "Paste a URL to import content. YouTube links will be\n auto-transcribed.",
525
+ "knowledgeview.Import": "Import",
526
+ "knowledgeview.SearchResults": "Search Results (",
527
+ "knowledgeview.Clear": "Clear",
528
+ "knowledgeview.Match": "% match",
529
+ "knowledgeview.NoResultsFound": "No results found",
530
+ "knowledgeview.YouTube": "YouTube",
531
+ "knowledgeview.URL": "URL",
532
+ "knowledgeview.Loading": "Loading...",
533
+ "knowledgeview.Type": "Type:",
534
+ "knowledgeview.Source": "Source:",
535
+ "knowledgeview.Fragments1": "Fragments (",
536
+ "knowledgeview.Fragment": "Fragment",
537
+ "knowledgeview.Position": "Position:",
538
+ "knowledgeview.NoFragmentsFound": "No fragments found",
539
+ "knowledgeview.KnowledgeServiceIs": "Knowledge service is loading...",
540
+ "knowledgeview.LoadingDocuments": "Loading documents...",
541
+ "knowledgeview.NoDocumentsYet": "No documents yet",
542
+ "knowledgeview.UploadFilesOrImpo": "Upload files or import from URL to get started",
543
+ "knowledgeview.httpsExampleCom": "https://example.com/document.pdf or YouTube URL",
544
+ "logspageview.AgentRuntimeLogsW": "Agent runtime logs with filtering.",
545
+ "logsview.AllLevels": "All levels",
546
+ "logsview.Debug": "Debug",
547
+ "logsview.Info": "Info",
548
+ "logsview.Warn": "Warn",
549
+ "logsview.Error": "Error",
550
+ "logsview.AllSources": "All sources",
551
+ "logsview.AllTags": "All tags",
552
+ "logsview.ClearFilters": "Clear filters",
553
+ "logsview.NoLogEntries": "No log entries",
554
+ "logsview.SearchLogs": "Search logs...",
555
+ "mediasettingssection.LoadingMediaConfig": "Loading media configuration...",
556
+ "mediasettingssection.APISource": "API Source:",
557
+ "mediasettingssection.Provider": "Provider:",
558
+ "mediasettingssection.Model": "Model",
559
+ "mediasettingssection.FluxPro": "Flux Pro",
560
+ "mediasettingssection.FluxProV11": "Flux Pro v1.1",
561
+ "mediasettingssection.FluxKontextPro": "Flux Kontext Pro",
562
+ "mediasettingssection.Flux2Flex": "Flux 2 Flex",
563
+ "mediasettingssection.FluxDev": "Flux Dev",
564
+ "mediasettingssection.FluxSchnell": "Flux Schnell",
565
+ "mediasettingssection.FastFlux": "Fast Flux",
566
+ "mediasettingssection.NanoBananaProGoo": "Nano Banana Pro (Google)",
567
+ "mediasettingssection.RecraftV3": "Recraft V3",
568
+ "mediasettingssection.KlingImageV3": "Kling Image v3",
569
+ "mediasettingssection.KlingImageO3": "Kling Image O3",
570
+ "mediasettingssection.GrokImagineXAI": "Grok Imagine (xAI)",
571
+ "mediasettingssection.StableDiffusion3": "Stable Diffusion 3",
572
+ "mediasettingssection.DALLE3": "DALL-E 3",
573
+ "mediasettingssection.DALLE2": "DALL-E 2",
574
+ "mediasettingssection.Quality": "Quality",
575
+ "mediasettingssection.Standard": "Standard",
576
+ "mediasettingssection.Veo31Google": "Veo 3.1 (Google)",
577
+ "mediasettingssection.Veo31Fast": "Veo 3.1 Fast",
578
+ "mediasettingssection.Sora2": "Sora 2",
579
+ "mediasettingssection.Sora2Pro": "Sora 2 Pro",
580
+ "mediasettingssection.Kling30Pro": "Kling 3.0 Pro",
581
+ "mediasettingssection.Kling30": "Kling 3.0",
582
+ "mediasettingssection.KlingO3Pro": "Kling O3 Pro",
583
+ "mediasettingssection.KlingO3": "Kling O3",
584
+ "mediasettingssection.GrokVideoXAI": "Grok Video (xAI)",
585
+ "mediasettingssection.MinimaxHailuo": "Minimax Hailuo",
586
+ "mediasettingssection.HunyuanVideo": "Hunyuan Video",
587
+ "mediasettingssection.Mochi1": "Mochi 1",
588
+ "mediasettingssection.Wan22": "Wan 2.2",
589
+ "mediasettingssection.Veo31": "Veo 3.1",
590
+ "mediasettingssection.GrokXAI": "Grok (xAI)",
591
+ "mediasettingssection.LumaDreamMachine": "Luma Dream Machine",
592
+ "mediasettingssection.PixverseV45": "Pixverse v4.5",
593
+ "mediasettingssection.LTX219B": "LTX-2 19B",
594
+ "mediasettingssection.ChirpV35": "Chirp v3.5",
595
+ "mediasettingssection.ChirpV3": "Chirp v3",
596
+ "mediasettingssection.MaxDurationSecond": "Max Duration (seconds)",
597
+ "mediasettingssection.GPT4o": "GPT-4o",
598
+ "mediasettingssection.GPT4oMini": "GPT-4o Mini",
599
+ "mediasettingssection.GPT4Turbo": "GPT-4 Turbo",
600
+ "mediasettingssection.Gemini20Flash": "Gemini 2.0 Flash",
601
+ "mediasettingssection.Gemini15Pro": "Gemini 1.5 Pro",
602
+ "mediasettingssection.Gemini15Flash": "Gemini 1.5 Flash",
603
+ "mediasettingssection.ClaudeSonnet4": "Claude Sonnet 4",
604
+ "mediasettingssection.Claude35Sonnet": "Claude 3.5 Sonnet",
605
+ "mediasettingssection.Claude3Haiku": "Claude 3 Haiku",
606
+ "mediasettingssection.Flux": "Flux",
607
+ "mediasettingssection.OtherModels": "Other Models",
608
+ "mediasettingssection.TextToVideo": "Text to Video",
609
+ "mediasettingssection.ImageToVideo": "Image to Video",
610
+ "messagecontent.Enabled": "— enabled",
611
+ "messagecontent.configuration": "configuration...",
612
+ "messagecontent.Plugin": "Plugin \"",
613
+ "messagecontent.NotFound": "\" not found.",
614
+ "messagecontent.Configuration": "Configuration",
615
+ "messagecontent.Configured": "Configured",
616
+ "config-field.Required": "Required",
617
+ "config-field.Configured": "Configured",
618
+ "config-field.Times": "×",
619
+ "messagecontent.NoConfigurablePara": "No configurable parameters.",
620
+ "messagecontent.Saved": "Saved",
621
+ "messagecontent.InteractiveUI": "Interactive UI",
622
+ "pairingview.PairingRequired": "Pairing Required",
623
+ "pairingview.EnterThePairingCo": "Enter the pairing code from the server logs to authenticate.",
624
+ "pairingview.PairingCode": "Pairing Code",
625
+ "pairingview.PairingIsNotEnabl": "Pairing is not enabled on this server.",
626
+ "pairingview.NextSteps": "Next steps:",
627
+ "pairingview.AskTheServerOwner": "Ask the server owner for an API token.",
628
+ "pairingview.EnablePairingOnTh": "Enable pairing on the server and restart {{appName}}.",
629
+ "pairingview.PairingSetupDocs": "Pairing setup docs",
630
+ "pairingview.EnterPairingCode": "Enter pairing code",
631
+ "permissionssection.Request": "Request",
632
+ "permissionssection.MissingPermissions": "Missing Permissions",
633
+ "permissionssection.LoadingPermissions": "Loading permissions...",
634
+ "permissionssection.SystemPermissions": "System Permissions",
635
+ "permissionssection.Continue": "Continue",
636
+ "permissionssection.Grant": "Grant",
637
+ "permissionssection.OpenSettings": "Open Settings",
638
+ "permissionssection.CheckAccess": "Check Access",
639
+ "permissionssection.AllowAll": "Allow All",
640
+ "permissionssection.AllowAllPermission": "Allow All Permissions",
641
+ "permissionssection.GrantPermissionsTo": "Grant permissions to unlock desktop features.",
642
+ "permissionssection.CheckingPermissions": "Checking permissions...",
643
+ "permissionssection.UnableToCheckPerm": "Unable to check permissions.",
644
+ "permissionssection.UnableToLoadPermi": "Unable to load permissions.",
645
+ "permissionssection.CapabilitiesRequire": "Capabilities require the system permissions listed above.",
646
+ "permissionssection.BrowserPermissions": "Browser Permissions",
647
+ "permissionssection.StreamingPermissions": "Streaming Permissions",
648
+ "permissionssection.WebStreamingDesc": "Grant browser access to your camera, microphone, and screen to stream to your agent.",
649
+ "permissionssection.MobileStreamingDesc": "Your device streams camera, microphone, and screen to your Eliza Cloud agent for processing.",
650
+ "permissionssection.WebOnboardingDesc": "Allow browser access so your camera, mic, and screen can stream to your agent.",
651
+ "permissionssection.MobileOnboardingDesc": "Allow access so your device can stream to your cloud agent.",
652
+ "permissionssection.SkipForNow": "Skip for Now",
653
+ "pluginsview.TestConnection": "Test Connection",
654
+ "pluginsview.AddPlugin": "+ Add Plugin",
655
+ "pluginsview.ApplyingPluginChan": "Applying plugin change and waiting for agent restart...",
656
+ "restartbanner.Later": "Later",
657
+ "runtimeview.none": "none",
658
+ "runtimeview.Services": "Services (",
659
+ "runtimeview.types": "types)",
660
+ "runtimeview.depth": "depth",
661
+ "runtimeview.arrayCap": "array cap",
662
+ "runtimeview.objectCap": "object cap",
663
+ "runtimeview.Collapse": "Collapse",
664
+ "runtimeview.ExpandTop": "Expand Top",
665
+ "runtimeview.Summary": "Summary",
666
+ "runtimeview.runtime": "runtime:",
667
+ "runtimeview.agent": "agent:",
668
+ "runtimeview.state": "state:",
669
+ "runtimeview.model": "model:",
670
+ "runtimeview.plugins": "plugins:",
671
+ "runtimeview.actions": "actions:",
672
+ "runtimeview.providers": "providers:",
673
+ "runtimeview.evaluators": "evaluators:",
674
+ "runtimeview.services": "services:",
675
+ "runtimeview.AgentRuntimeIsNot": "Agent runtime is not running. Start the runtime and refresh.",
676
+ "runtimeview.Plugins": "Plugins",
677
+ "runtimeview.Actions": "Actions",
678
+ "runtimeview.Providers": "Providers",
679
+ "runtimeview.Evaluators": "Evaluators",
680
+ "savecommandmodal.SaveAsCommand": "Save as /Command",
681
+ "savecommandmodal.CommandName": "Command name",
682
+ "savecommandmodal.Preview": "Preview",
683
+ "savecommandmodal.Save": "Save",
684
+ "savecommandmodal.myCommand": "my-command",
685
+ "secretsview.LoadingSecrets": "Loading secrets...",
686
+ "secretsview.ManageAPIKeysAnd": "Manage API keys and credentials. Add secrets from your plugins, set\n them once.",
687
+ "secretsview.AddSecret": "+ Add Secret",
688
+ "secretsview.YourVaultIsEmpty": "Your vault is empty. Click \"Add Secret\" to choose which API keys to\n manage here.",
689
+ "secretsview.AddSecretsToVault": "Add Secrets to Vault",
690
+ "secretsview.Add": "Add",
691
+ "secretsview.Required": "Required",
692
+ "secretsview.SearchByKeyDescr": "Search by key, description, or plugin name...",
693
+ "secretsview.RemoveFromVault": "Remove from vault",
694
+ "settingsview.Password": "Password",
695
+ "settingsview.IncludeRecentLogs": "Include recent logs in the backup",
696
+ "settingsview.BackupFile": "Backup file",
697
+ "settingsview.EnterExportPasswor": "Enter export password",
698
+ "settingsview.EnterImportPasswor": "Enter import password",
699
+ "shortcutsoverlay.KeyboardShortcuts": "Keyboard Shortcuts",
700
+ "skillsview.ReviewFindings": "Review Findings",
701
+ "skillsview.ScanReport": "Scan Report",
702
+ "skillsview.critical": "critical",
703
+ "skillsview.warnings": "warnings",
704
+ "skillsview.AcknowledgeAmpEn": "Acknowledge & Enable",
705
+ "skillsview.Dismiss": "Dismiss",
706
+ "skillsview.LoadingScanReport": "Loading scan report...",
707
+ "skillsview.score": "score:",
708
+ "skillsview.result": "result",
709
+ "skillsview.CreateNewSkill": "Create New Skill",
710
+ "skillsview.SkillName": "Skill Name",
711
+ "skillsview.Description": "Description",
712
+ "skillsview.SKILLMd": "SKILL.md",
713
+ "skillsview.unsaved": "unsaved",
714
+ "skillsview.toSave": "to save",
715
+ "skillsview.LoadingSkillSource": "Loading skill source...",
716
+ "skillsview.eGMyAwesomeSkil": "e.g. my-awesome-skill",
717
+ "skillsview.BriefDescriptionOf": "Brief description of what this skill does (optional)",
718
+ "startupfailureview.StartupFailed": "Startup failed:",
719
+ "startupfailureview.ThisOriginDoesNot": "This origin does not host the agent backend.",
720
+ "startupfailureview.RetryStartup": "Retry Startup",
721
+ "startupfailureview.OpenApp": "Open App",
722
+ "streamview.StreamingUnavailabl": "Streaming unavailable",
723
+ "streamview.EnableTheStreaming": "Enable the streaming plugin to go live",
724
+ "streamview.ElizaCouldNotRea": "{{appName}} could not reach the local streaming routes for this\n view. Install and enable the",
725
+ "streamview.streamingBase": "streaming-base",
726
+ "streamview.pluginThenReload": "plugin, then reload the Stream tab.",
727
+ "streamview.IfThePluginIsAlr": "If the plugin is already installed, restart the desktop app or\n API server and try again.",
728
+ "streamview.Game": "Game",
729
+ "subscriptionstatus.ClaudeSubscription": "Claude subscription credentials are expired or invalid. Reconnect\n to continue.",
730
+ "subscriptionstatus.SetupToken": "Setup Token",
731
+ "subscriptionstatus.OAuthLogin": "OAuth Login",
732
+ "subscriptionstatus.SavingAmpRestart": "Saving & restarting...",
733
+ "subscriptionstatus.YourClaudeSubscrip": "Your Claude subscription is linked. Disconnect to switch accounts.",
734
+ "subscriptionstatus.RequiresClaudePro": "Requires Claude Pro ($20/mo) or Max ($100/mo).",
735
+ "subscriptionstatus.AfterLoggingInCo": "After logging in to Claude, copy the authorization code and\n paste it below.",
736
+ "subscriptionstatus.ChatGPTSubscription": "ChatGPT subscription credentials are expired or invalid. Reconnect\n to continue.",
737
+ "subscriptionstatus.YourChatGPTSubscri": "Your ChatGPT subscription is linked. Disconnect to switch\n accounts.",
738
+ "subscriptionstatus.LoginWithOpenAI": "Login with OpenAI",
739
+ "subscriptionstatus.RequiresChatGPTPlu": "Requires ChatGPT Plus ($20/mo) or Pro ($200/mo).",
740
+ "subscriptionstatus.AfterLoggingInYo": "After logging in, you'll be redirected to a page that won't load\n (starts with",
741
+ "subscriptionstatus.localhost1455": "localhost:1455",
742
+ "subscriptionstatus.CopyTheEntireU": "). Copy the entire URL and paste it below.",
743
+ "subscriptionstatus.skAntOat01": "sk-ant-oat01-...",
744
+ "subscriptionstatus.PasteTheAuthorizat": "Paste the authorization code here...",
745
+ "subscriptionstatus.httpLocalhost145": "http://localhost:1455/auth/callback?code=...",
746
+ "trajectoriesview.Total": "Total:",
747
+ "trajectoriesview.LLMCalls": "LLM Calls:",
748
+ "trajectoriesview.Tokens": "Tokens:",
749
+ "trajectoriesview.AvgDuration": "Avg Duration:",
750
+ "trajectoriesview.Logging": "Logging:",
751
+ "trajectoriesview.AllStatuses": "All statuses",
752
+ "trajectoriesview.Completed": "Completed",
753
+ "trajectoriesview.JSONWithPrompts": "JSON (with prompts)",
754
+ "trajectoriesview.JSONRedacted": "JSON (redacted)",
755
+ "trajectoriesview.CSVSummaryOnly": "CSV (summary only)",
756
+ "trajectoriesview.ZIPFolders": "ZIP (folders)",
757
+ "trajectoriesview.LoadingTrajectories": "Loading trajectories...",
758
+ "trajectoriesview.NoTrajectories": "No trajectories",
759
+ "trajectoriesview.NoTrajectoriesMatchingFilters": "No trajectories match the current filters.",
760
+ "trajectoriesview.NoTrajectoriesYet": "No trajectories yet.",
761
+ "trajectoriesview.LoggingHelp": "Logging defaults to OFF in production and ON in development. Use the toggle to change it.",
762
+ "trajectoriesview.FailedToLoad": "Failed to load trajectories",
763
+ "trajectoriesview.FailedToUpdateConfig": "Failed to update logging setting",
764
+ "trajectoriesview.FailedToExport": "Failed to export trajectories",
765
+ "trajectoriesview.FailedToClear": "Failed to clear trajectories",
766
+ "trajectoriesview.DeleteAllTitle": "Delete All Trajectories",
767
+ "trajectoriesview.DeleteAllMessage": "Are you sure you want to delete all trajectories?",
768
+ "trajectoriesview.DeleteAllDetail": "This cannot be undone.",
769
+ "trajectoriesview.Time": "Time",
770
+ "trajectoriesview.Source": "Source",
771
+ "trajectoriesview.Calls": "Calls",
772
+ "trajectoriesview.Tokens1": "Tokens",
773
+ "trajectoriesview.Duration": "Duration",
774
+ "trajectoriesview.Showing": "Showing",
775
+ "trajectoriesview.ShowingRange": "Showing {{start}}-{{end}} of {{total}}",
776
+ "trajectoriesview.Search": "Search...",
777
+ "trajectorydetailview.lines": "lines",
778
+ "trajectorydetailview.Copy": "Copy",
779
+ "trajectorydetailview.EstCost": "Est. cost:",
780
+ "trajectorydetailview.Temp": "Temp:",
781
+ "trajectorydetailview.Max": "Max:",
782
+ "trajectorydetailview.SystemPrompt": "System prompt (",
783
+ "trajectorydetailview.chars": "chars)",
784
+ "trajectorydetailview.LoadingTrajectory": "Loading trajectory...",
785
+ "trajectorydetailview.GoBack": "Go back",
786
+ "trajectorydetailview.TrajectoryNotFound": "Trajectory not found",
787
+ "trajectorydetailview.Back": "← Back",
788
+ "trajectorydetailview.TrajectoryDetail": "Trajectory Detail",
789
+ "trajectorydetailview.Time": "Time:",
790
+ "trajectorydetailview.Source": "Source:",
791
+ "trajectorydetailview.Duration": "Duration:",
792
+ "trajectorydetailview.TotalTokens": "Total Tokens:",
793
+ "trajectorydetailview.NoLLMCallsRecorde": "No LLM calls recorded for this trajectory.",
794
+ "trajectorydetailview.CopyToClipboard": "Copy to clipboard",
795
+ "trajectorydetailview.System": "System",
796
+ "trajectorydetailview.InputUser": "Input (User)",
797
+ "trajectorydetailview.OutputResponse": "Output (Response)",
798
+ "triggersview.TriggersScheduleAu": "Heartbeats schedule autonomous instructions for the agent. Each heartbeat\n can run on an interval, a one-time timestamp, or a cron schedule; when\n it fires, the instruction is injected into autonomy and the run\n outcome is logged below.",
799
+ "triggersview.TriggerHealth": "Heartbeat Health",
800
+ "triggersview.NoHealthDataYet": "No health data yet — heartbeats will report here after first\n execution.",
801
+ "triggersview.Name": "Name",
802
+ "triggersview.Instructions": "Instructions",
803
+ "triggersview.ScheduleType": "Schedule Type",
804
+ "triggersview.RepeatingInterval": "Repeating Interval",
805
+ "triggersview.OneTime": "One-time",
806
+ "triggersview.CronSchedule": "Cron Schedule",
807
+ "triggersview.WakeMode": "Wake Mode",
808
+ "triggersview.InjectAmpWakeIm": "Inject and Wake Immediately",
809
+ "triggersview.QueueForNextCycle": "Queue for next cycle",
810
+ "triggersview.MaxRunsOptional": "Max Runs (optional)",
811
+ "triggersview.IntervalMs": "Interval (ms) —",
812
+ "triggersview.ScheduledTimeISO": "Scheduled Time (ISO)",
813
+ "triggersview.CronExpression5F": "Cron Expression (5-field)",
814
+ "triggersview.minuteHourDayMont": "minute hour day month weekday — e.g. \"0 9 * * 1-5\" = weekdays at\n 9am",
815
+ "triggersview.StartEnabled": "Start enabled",
816
+ "triggersview.NoTriggersConfigur": "No heartbeats configured yet",
817
+ "triggersview.CreateOneAboveTo": "Create one above to schedule autonomous agent tasks",
818
+ "triggersview.Edit": "Edit",
819
+ "triggersview.RunNow": "Run now",
820
+ "triggersview.Delete": "Delete",
821
+ "triggersview.LastRun": "Last run",
822
+ "triggersview.RunHistory": "Run History",
823
+ "triggersview.NoRunsRecordedYet": "No runs recorded yet.",
824
+ "triggersview.Disabled": "Disabled",
825
+ "triggersview.Executions": "Executions",
826
+ "triggersview.Failures": "Failures",
827
+ "triggersview.LastExec": "Last Exec",
828
+ "triggersview.eGDailyDigestH": "e.g. Daily Digest, Heartbeat Check",
829
+ "triggersview.WhatShouldTheAgen": "What should the agent do when this trigger fires?",
830
+ "triggersview.20260215T100000": "2026-02-15T10:00:00.000Z",
831
+ "heartbeatsview.durationUnitSeconds": "seconds",
832
+ "heartbeatsview.durationUnitMinutes": "minutes",
833
+ "heartbeatsview.durationUnitHours": "hours",
834
+ "heartbeatsview.durationUnitDays": "days",
835
+ "heartbeatsview.every": "Every",
836
+ "heartbeatsview.onceAt": "Once at {{time}}",
837
+ "heartbeatsview.once": "Once",
838
+ "heartbeatsview.cronPrefix": "Cron:",
839
+ "heartbeatsview.validationDisplayNameRequired": "Display name is required.",
840
+ "heartbeatsview.validationInstructionsRequired": "Instructions are required.",
841
+ "heartbeatsview.validationIntervalPositive": "Interval must be a positive number.",
842
+ "heartbeatsview.validationScheduledTimeRequired": "Scheduled time is required for one-time heartbeats.",
843
+ "heartbeatsview.validationScheduledTimeInvalid": "Scheduled time must be a valid ISO date-time.",
844
+ "heartbeatsview.validationCronRequired": "Cron expression is required.",
845
+ "heartbeatsview.validationCronFiveFields": "Cron expression must have exactly 5 fields (minute hour day month weekday).",
846
+ "heartbeatsview.cronFieldMinute": "minute",
847
+ "heartbeatsview.cronFieldHour": "hour",
848
+ "heartbeatsview.cronFieldDay": "day",
849
+ "heartbeatsview.cronFieldMonth": "month",
850
+ "heartbeatsview.cronFieldWeekday": "weekday",
851
+ "heartbeatsview.validationCronInvalidField": "Invalid cron {{field}} field: \"{{value}}\"",
852
+ "heartbeatsview.validationMaxRunsPositive": "Max runs must be a positive integer.",
853
+ "heartbeatsview.deleteTitle": "Delete Heartbeat",
854
+ "heartbeatsview.deleteMessage": "Delete \"{{name}}\"?",
855
+ "heartbeatsview.heartbeatSingular": "Heartbeat",
856
+ "heartbeatsview.editTitle": "Edit: {{name}}",
857
+ "heartbeatsview.newHeartbeat": "New Heartbeat",
858
+ "heartbeatsview.emptyStateDescription": "Use the New Heartbeat button to create the first recurring or scheduled autonomous task.",
859
+ "heartbeatsview.statusActive": "Active",
860
+ "heartbeatsview.statusPaused": "Paused",
861
+ "heartbeatsview.nextInline": "Next {{time}}",
862
+ "heartbeatsview.runCountSingle": "{{count}} run",
863
+ "heartbeatsview.runCountPlural": "{{count}} runs",
864
+ "heartbeatsview.maxRuns": "Max Runs",
865
+ "heartbeatsview.unlimited": "Unlimited",
866
+ "heartbeatsview.nextRun": "Next Run",
867
+ "heartbeatsview.notYetRun": "Not yet run",
868
+ "heartbeatsview.notScheduled": "Not scheduled",
869
+ "heartbeatsview.enable": "Enable",
870
+ "heartbeatsview.disable": "Disable",
871
+ "heartbeatsview.refresh": "Refresh",
872
+ "heartbeatsview.loading": "Loading...",
873
+ "heartbeatsview.editHeartbeat": "Edit Heartbeat",
874
+ "heartbeatsview.createHeartbeat": "Create Heartbeat",
875
+ "heartbeatsview.close": "Close",
876
+ "heartbeatsview.interval": "Interval",
877
+ "heartbeatsview.saving": "Saving...",
878
+ "heartbeatsview.saveChanges": "Save Changes",
879
+ "heartbeatsview.statusSuccess": "Success",
880
+ "heartbeatsview.statusCompleted": "Completed",
881
+ "heartbeatsview.statusSkipped": "Skipped",
882
+ "heartbeatsview.statusQueued": "Queued",
883
+ "heartbeatsview.statusError": "Error",
884
+ "heartbeatsview.statusFailed": "Failed",
885
+ "heartbeatsview.emDash": "—",
886
+ "ui-renderer.Larr": "←",
887
+ "ui-renderer.Rarr": "→",
888
+ "ui-renderer.UnknownComponent": "Unknown component:",
889
+ "vectorbrowserview.NotEnoughEmbedding": "Not enough embeddings for graph view",
890
+ "vectorbrowserview.NeedAtLeast2Memo": "Need at least 2 memories with embedding data. Found",
891
+ "vectorbrowserview.vectorsProjectedTo": "vectors projected to 2D via PCA — click a point\n to view details",
892
+ "vectorbrowserview.List": "List",
893
+ "vectorbrowserview.DatabaseNotAvailab": "Database not available",
894
+ "vectorbrowserview.RetryConnection": "Retry Connection",
895
+ "vectorbrowserview.NoMemoriesFound": "No memories found",
896
+ "voiceconfigview.WakeWord": "Wake Word",
897
+ "voiceconfigview.Triggers": "Triggers",
898
+ "voiceconfigview.PressEnterOrComma": "Press Enter or comma to add. At least one trigger required.",
899
+ "voiceconfigview.WakeSensitivity": "Wake sensitivity",
900
+ "voiceconfigview.LowerMoreSensiti": "Lower = more sensitive (shorter gap required after wake word)",
901
+ "voiceconfigview.ModelSize": "Model size",
902
+ "voiceconfigview.Microphone": "Microphone",
903
+ "voiceconfigview.AddTrigger": "Add trigger…",
904
+ "voiceconfigview.LoadingVoiceConfig": "Loading voice configuration...",
905
+ "voiceconfigview.TTSProvider": "TTS Provider",
906
+ "voiceconfigview.APISource": "API Source",
907
+ "voiceconfigview.ElevenLabsAPIKey": "ElevenLabs API Key",
908
+ "voiceconfigview.GetYourKeyAt": "Get your key at",
909
+ "voiceconfigview.elevenlabsIo": "elevenlabs.io",
910
+ "voiceconfigview.FastPathDefaultE": "Fast-path default ElevenLabs model: ",
911
+ "voiceconfigview.Voice": "Voice",
912
+ "voiceconfigview.Stop": "Stop",
913
+ "voiceconfigview.ServedViaElizaCloud": "served via Eliza Cloud",
914
+ "voiceconfigview.RequiresApiKey": "Requires API key",
915
+ "voiceconfigview.NoApiKeyNeeded": "No API key needed",
916
+ "voiceconfigview.Playing": "Playing...",
917
+ "voiceconfigview.TestVoice": "Test {{name}}",
918
+ "voiceconfigview.EdgeTTSUsesMicros": "Edge TTS uses Microsoft voices built into the platform.",
919
+ "voiceconfigview.SimpleVoiceUsesYo": "Simple Voice uses your system defaults and does not require an external API key.",
920
+ "whatsappqroverlay.Disconnect": "Disconnect",
921
+ "whatsappqroverlay.TryAgain": "Try Again",
922
+ "whatsappqroverlay.ScanAQRCodeWith": "Scan a QR code with your phone to link WhatsApp.",
923
+ "whatsappqroverlay.UsesAnUnofficialW": "Uses an unofficial WhatsApp API. Use a dedicated phone number.",
924
+ "whatsappqroverlay.ConnectWhatsApp": "Connect WhatsApp",
925
+ "whatsappqroverlay.GeneratingQR": "Generating QR...",
926
+ "whatsappqroverlay.ScanWithWhatsApp": "Scan with WhatsApp",
927
+ "whatsappqroverlay.OpenWhatsAppOnYou": "Open WhatsApp on your phone",
928
+ "whatsappqroverlay.Tap": "Tap",
929
+ "whatsappqroverlay.Menu": "Menu",
930
+ "whatsappqroverlay.andSelect": "and select",
931
+ "whatsappqroverlay.LinkedDevices": "Linked Devices",
932
+ "whatsappqroverlay.LinkADevice": "Link a Device",
933
+ "whatsappqroverlay.PointYourPhoneAt": "Point your phone at this QR code",
934
+ "whatsappqroverlay.QRRefreshesAutomat": "QR refreshes automatically (~15s)",
935
+ "portfolioheader.ConnectViaElizaCl": "Connect via Eliza Cloud or configure a custom BSC RPC provider\n (NodeReal / QuickNode) to enable trading.",
936
+ "tokenstable.nativeGas": "native gas",
937
+ "activityfeed.Activity": "Activity",
938
+ "activityfeed.NoEventsYet": "No events yet",
939
+ "chatcontent.WaitingForMessages": "Waiting for messages...",
940
+ "chatticker.chat": "chat",
941
+ "idlecontent.Thought": "Thought",
942
+ "idlecontent.AgentIsIdleAwai": "Agent is idle — awaiting activity...",
943
+ "idlecontent.RecentActions": "Recent Actions",
944
+ "statusbar.Src": "Src:",
945
+ "statusbar.Active": "(active)",
946
+ "statusbar.https": "https://...",
947
+ "statusbar.PopOutStreamView": "Pop out stream view",
948
+ "streamsettings.StreamSettings": "Stream Settings",
949
+ "streamsettings.SelectWhereToBroa": "Select where to broadcast. To switch channels, stop the stream\n first.",
950
+ "streamsettings.NoStreamingDestina": "No streaming destinations configured.",
951
+ "streamsettings.InstallAStreaming": "Install a streaming plugin (Twitch, YouTube, Retake.tv, Custom\n RTMP) via the Plugins tab.",
952
+ "streamsettings.StreamIsLiveSt": "⚠ Stream is live. Stop the stream to switch channels.",
953
+ "streamsettings.ToggleAndConfigure": "Toggle and configure widgets shown on top of your stream.",
954
+ "streamsettings.ResetDefaults": "Reset defaults",
955
+ "streamsettings.NoWidgetsAvailable": "No widgets available. Reload the stream tab.",
956
+ "streamsettings.ChooseWhatContent": "Choose what content is captured and broadcast.",
957
+ "streamsettings.Use": "Use",
958
+ "streamsettings.CustomURLsMustSta": "Custom URLs must start with `http://` or `https://`.",
959
+ "streamsettings.httpsYourUrlCom": "https://your-url.com",
960
+ "streamterminal.TERMINAL": "TERMINAL",
961
+ "streamterminal.WaitingForTerminal": "Waiting for terminal activity...",
962
+ "streamvoiceconfig.Voice": "Voice",
963
+ "streamvoiceconfig.NoKey": "(no key)",
964
+ "streamvoiceconfig.Speaking": "Speaking...",
965
+ "streamvoiceconfig.Test": "Test",
966
+ "streamvoiceconfig.NoAPIKeyConfigure": "No API key configured",
967
+ "streamvoiceconfig.TestTTSOnStream": "Test TTS on stream",
968
+ "actiontickerwidget.actions": "actions",
969
+ "peonhudwidget.events": "events",
970
+ "elizaclouddashboard.AgentName": "Agent Name",
971
+ "elizaclouddashboard.Deploy": "Deploy",
972
+ "settings.sections.aimodel.label": "AI Model",
973
+ "settings.sections.aimodel.desc": "Provider and model settings",
974
+ "settings.sections.cloud.desc": "Manage your cloud agents and resources",
975
+ "settings.sections.codingagents.label": "Coding Agents",
976
+ "settings.sections.codingagents.desc": "Agent preferences, models, and permissions",
977
+ "settings.sections.walletrpc.label": "Wallet & RPC",
978
+ "settings.sections.walletrpc.desc": "Chain RPC providers and API keys",
979
+ "settings.sections.media.label": "Media",
980
+ "settings.sections.media.desc": "Image, video, and vision providers",
981
+ "settings.sections.voice.label": "Voice",
982
+ "settings.sections.voice.desc": "Text-to-speech and transcription",
983
+ "settings.sections.permissions.label": "Permissions",
984
+ "settings.sections.permissions.desc": "Capabilities and access control",
985
+ "settings.sections.updates.label": "Updates",
986
+ "settings.sections.updates.desc": "Software update settings",
987
+ "settings.sections.advanced.desc": "Export, import, and dangerous actions",
988
+ "settings.change": "Change",
989
+ "settings.browse": "Browse",
990
+ "settings.aiModel": "AI Model",
991
+ "settings.aiModelDescription": "Provider and model settings",
992
+ "settings.codingAgents": "Coding Agents",
993
+ "settings.codingAgentsDescription": "Configure AI coding agents for multi-agent task execution.",
994
+ "settings.walletRpc": "Wallet & RPC",
995
+ "settings.walletRpcDescription": "Configure chain RPC providers for trading and market data.",
996
+ "settings.mediaGeneration": "Media",
997
+ "settings.mediaDescription": "Image, video, and vision providers",
998
+ "settings.speechInterface": "Voice",
999
+ "settings.speechDescription": "Text-to-speech and transcription",
1000
+ "settings.permissionsCapabilities": "Permissions",
1001
+ "settings.permissionsDescription": "Capabilities and access control",
1002
+ "settings.softwareUpdates": "Updates",
1003
+ "settings.updatesDescription": "Software update settings",
1004
+ "settings.advancedSettings": "Advanced",
1005
+ "settings.advancedDescription": "Export, import, and dangerous actions",
1006
+ "settings.noMatchingSettingsDescription": "Try a broader search or clear the current filter.",
1007
+ "settingsview.JumpToSection": "Jump to section",
1008
+ "settingsview.NoMatchingSettings": "No matching settings",
1009
+ "settingsview.ClearSearch": "Clear search",
1010
+ "providerswitcher.noAiProvidersAvailable": "No AI providers available. Enable one from the",
1011
+ "providerswitcher.plugins": "Plugins",
1012
+ "providerswitcher.page": "page.",
1013
+ "providerswitcher.selectAIProvider": "Select AI provider",
1014
+ "providerswitcher.chooseYourPreferredProvider": "Choose your preferred provider for inference.",
1015
+ "providerswitcher.loggedIntoElizaCloud": "Logged into Eliza Cloud",
1016
+ "providerswitcher.disconnecting": "Disconnecting...",
1017
+ "providerswitcher.disconnect": "Disconnect",
1018
+ "providerswitcher.credits": "Credits:",
1019
+ "providerswitcher.topUp": "Top up",
1020
+ "providerswitcher.smallModelDescription": "Fast model for simple tasks",
1021
+ "providerswitcher.largeModelDescription": "Powerful model for complex reasoning",
1022
+ "providerswitcher.smallModelLabel": "Small Model",
1023
+ "providerswitcher.largeModelLabel": "Large Model",
1024
+ "providerswitcher.savingRestarting": "Saving & restarting...",
1025
+ "providerswitcher.savedRestartingAgent": "Saved. Restarting agent...",
1026
+ "providerswitcher.waitingForBrowser": "Waiting for browser login...",
1027
+ "providerswitcher.logInToElizaCloud": "Log in to Eliza Cloud",
1028
+ "providerswitcher.opensABrowserWindow": "Opens a browser window to complete login.",
1029
+ "providerswitcher.piSettings": "Pi (pi-ai) Settings",
1030
+ "providerswitcher.usesLocalCredentials": "Uses credentials from ~/.pi/agent/auth.json.",
1031
+ "providerswitcher.primaryModelOverride": "Primary model override",
1032
+ "providerswitcher.usePiDefaultModel": "Use pi default model",
1033
+ "providerswitcher.customModelSpec": "Custom model spec",
1034
+ "providerswitcher.providerModelPlaceholder": "provider/model (e.g. ollama/qwen2.5)",
1035
+ "providerswitcher.saveInProgress": "Saving...",
1036
+ "providerswitcher.save": "Save",
1037
+ "providerswitcher.elizaCloud": "Eliza Cloud",
1038
+ "providerswitcher.piAi": "Pi (pi-ai)",
1039
+ "providerswitcher.claudeSubscription": "Claude Subscription",
1040
+ "providerswitcher.chatgptSubscription": "ChatGPT Subscription",
1041
+ "apikeyconfig.fetchModels": "Fetch Models",
1042
+ "apikeyconfig.fetching": "Fetching...",
1043
+ "apikeyconfig.loadedModels": "Loaded {{count}} models",
1044
+ "apikeyconfig.error": "Error: {{message}}",
1045
+ "apikeyconfig.failed": "failed",
1046
+ "apikeyconfig.saving": "Saving...",
1047
+ "apikeyconfig.save": "Save",
1048
+ "apikeyconfig.saved": "Saved",
1049
+ "subscriptionstatus.PasteCallbackUrlFromLocalhost": "Paste the callback URL from the localhost:1455 page.",
1050
+ "subscriptionstatus.CallbackCodeTooLong": "Callback code is too long.",
1051
+ "subscriptionstatus.InvalidCallbackUrl": "Invalid callback URL.",
1052
+ "subscriptionstatus.ExpectedCallbackUrl": "Expected a localhost:1455/auth/callback URL.",
1053
+ "subscriptionstatus.CallbackUrlMissingCode": "Callback URL is missing the ?code= parameter.",
1054
+ "subscriptionstatus.FailedToSaveSetupToken": "Failed to save setup token.",
1055
+ "subscriptionstatus.FailedToSaveTokenError": "Failed to save token: {{message}}",
1056
+ "subscriptionstatus.DisconnectFailedError": "Disconnect failed: {{message}}",
1057
+ "subscriptionstatus.FailedToGetAuthUrl": "Failed to get auth URL",
1058
+ "subscriptionstatus.FailedToStartLogin": "Failed to start login: {{message}}",
1059
+ "subscriptionstatus.ExchangeFailed": "Exchange failed",
1060
+ "subscriptionstatus.ExchangeFailedError": "Exchange failed: {{message}}",
1061
+ "subscriptionstatus.NoAuthUrlReturned": "No auth URL returned from login",
1062
+ "subscriptionstatus.ConnectedToClaudeSubscription": "Connected to Claude Subscription",
1063
+ "subscriptionstatus.ClaudeSubscriptionTitle": "Claude Subscription",
1064
+ "subscriptionstatus.Disconnecting": "Disconnecting...",
1065
+ "subscriptionstatus.Disconnect": "Disconnect",
1066
+ "subscriptionstatus.Saving": "Saving...",
1067
+ "subscriptionstatus.SaveToken": "Save Token",
1068
+ "subscriptionstatus.ConnectedToChatGPTSubscription": "Connected to ChatGPT Subscription",
1069
+ "subscriptionstatus.ChatGPTSubscriptionTitle": "ChatGPT Subscription",
1070
+ "subscriptionstatus.Completing": "Completing...",
1071
+ "elizaclouddashboard.ElizaCloud": "Eliza Cloud",
1072
+ "elizaclouddashboard.NotAvailable": "Not available",
1073
+ "elizaclouddashboard.ElizaCloudNotConnectedSettings": "Eliza Cloud not connected - configure in Settings -> AI Model",
1074
+ "elizaclouddashboard.NoSetupNeeded": "No setup needed",
1075
+ "codingagentsettingssection.NoSupportedCLIs": "No supported coding agent CLIs detected. Install at least one of: Claude, Gemini, Codex, or Aider.",
1076
+ "codingagentsettingssection.Availability": "Availability:",
1077
+ "codingagentsettingssection.Installed": "Installed",
1078
+ "codingagentsettingssection.NotInstalled": "Not installed",
1079
+ "codingagentsettingssection.Unknown": "Unknown",
1080
+ "codingagentsettingssection.AgentUsedWhenNoEStrategyFixed": "Always use the selected default agent type when none is specified.",
1081
+ "codingagentsettingssection.AgentUsedWhenNoEStrategyRanked": "Automatically select the best-performing installed agent based on success rate and stall metrics.",
1082
+ "codingagentsettingssection.AppliesToAllNewlySpawned": " — applies to all newly spawned agents unless overridden per-spawn.",
1083
+ "codingagentsettingssection.ModelsFetched": "Models fetched from provider API. These are preferences — the CLI may override based on availability.",
1084
+ "codingagentsettingssection.UsingFallback": "Using fallback model list — configure your API key to see all available models.",
1085
+ "codingagentsettingssection.PresetReadOnly": "Read Only",
1086
+ "codingagentsettingssection.PresetReadOnlyDesc": "Read-only tools only",
1087
+ "codingagentsettingssection.PresetStandard": "Standard",
1088
+ "codingagentsettingssection.PresetStandardDesc": "Read + write, asks for shell/network",
1089
+ "codingagentsettingssection.PresetPermissive": "Permissive",
1090
+ "codingagentsettingssection.PresetPermissiveDesc": "File ops auto-approved, asks for shell",
1091
+ "codingagentsettingssection.PresetAutonomous": "Autonomous",
1092
+ "codingagentsettingssection.PresetAutonomousDesc": "All tools auto-approved",
1093
+ "mediasettingssection.ImageGeneration": "Image Generation",
1094
+ "mediasettingssection.VideoGeneration": "Video Generation",
1095
+ "mediasettingssection.AudioMusic": "Audio / Music",
1096
+ "mediasettingssection.VisionAnalysis": "Vision (Analysis)",
1097
+ "mediasettingssection.ProviderHintNoSetup": "No setup needed",
1098
+ "mediasettingssection.ProviderHintFalImage": "Flux 2, Kling, Recraft, Grok",
1099
+ "mediasettingssection.ProviderHintOpenAIImage": "DALL-E 3",
1100
+ "mediasettingssection.ProviderHintGoogleImage": "Imagen 3",
1101
+ "mediasettingssection.ProviderHintXAIAurora": "Aurora",
1102
+ "mediasettingssection.ProviderHintFalVideo": "Veo 3, Sora 2, Kling 3, Minimax",
1103
+ "mediasettingssection.ProviderHintOpenAIVideo": "Sora",
1104
+ "mediasettingssection.ProviderHintGoogleVideo": "Veo",
1105
+ "mediasettingssection.ProviderHintSuno": "Music generation",
1106
+ "mediasettingssection.ProviderHintElevenLabs": "Sound effects",
1107
+ "mediasettingssection.ProviderHintOpenAIVision": "GPT-4o Vision",
1108
+ "mediasettingssection.ProviderHintGoogleVision": "Gemini Vision",
1109
+ "mediasettingssection.ProviderHintAnthropicVision": "Claude Vision",
1110
+ "mediasettingssection.ProviderHintXAIVision": "Grok Vision",
1111
+ "mediasettingssection.Configured": "Configured",
1112
+ "mediasettingssection.NeedsSetup": "Needs Setup",
1113
+ "mediasettingssection.ApiKeySetLeaveBlank": "API key set — leave blank to keep",
1114
+ "mediasettingssection.EnterApiKey": "Enter API key...",
1115
+ "mediasettingssection.FalApiKey": "FAL API Key",
1116
+ "mediasettingssection.OpenAIApiKey": "OpenAI API Key",
1117
+ "mediasettingssection.GoogleApiKey": "Google API Key",
1118
+ "mediasettingssection.XAIApiKey": "xAI API Key",
1119
+ "mediasettingssection.SunoApiKey": "Suno API Key",
1120
+ "mediasettingssection.ElevenLabsApiKey": "ElevenLabs API Key",
1121
+ "mediasettingssection.AnthropicApiKey": "Anthropic API Key",
1122
+ "streamsettings.DisableWidget": "Disable widget",
1123
+ "streamsettings.EnableWidget": "Enable widget",
1124
+ "streamsettings.ConfigExpanded": "▲ config",
1125
+ "streamsettings.ConfigCollapsed": "▼ config",
1126
+ "streamsettings.CaptureStreamBrowserTab": "Capture the stream browser tab (default)",
1127
+ "streamsettings.NoGameActive": "No game active",
1128
+ "streamsettings.BroadcastFromCustomUrl": "Broadcast from a custom HTTP(S) URL",
1129
+ "streamsettings.StopStreamToChangeChannel": "Stop stream to change channel",
1130
+ "streamsettings.NavChannel": "Channel",
1131
+ "streamsettings.NavOverlays": "Overlays",
1132
+ "streamsettings.NavSource": "Source",
1133
+ "onboarding.stepName.identity": "Identity",
1134
+ "onboarding.stepSub.identity": "Agent persona",
1135
+ "onboarding.stepName.wakeUp": "Initialize",
1136
+ "onboarding.stepSub.wakeUp": "System boot",
1137
+ "onboarding.stepSub.connection": "Neural link",
1138
+ "onboarding.stepName.rpc": "RPC",
1139
+ "onboarding.stepSub.rpc": "Blockchain access",
1140
+ "onboarding.stepName.senses": "Access",
1141
+ "onboarding.stepSub.senses": "System permissions",
1142
+ "onboarding.stepName.activate": "Launch",
1143
+ "onboarding.welcomeTitle": "Welcome to {{appName}}",
1144
+ "onboarding.welcomeSubtitle": "Your autonomous AI companion awaits.",
1145
+ "onboarding.createNewAgent": "Create New Agent",
1146
+ "onboarding.restoreFromBackup": "Restore from Backup",
1147
+ "onboarding.importAgent": "Import Agent",
1148
+ "onboarding.importDesc": "Select an <code>.eliza-agent</code> export file and enter the decryption password.",
1149
+ "onboarding.decryptionPasswordPlaceholder": "Decryption password...",
1150
+ "onboarding.selectFileError": "Select an export file before importing.",
1151
+ "onboarding.passwordMinError": "Password must be at least 4 characters.",
1152
+ "onboarding.cancel": "Cancel",
1153
+ "onboarding.importing": "Importing...",
1154
+ "onboarding.restore": "Restore",
1155
+ "onboarding.back": "← Back",
1156
+ "onboarding.hostingTitle": "Hosting",
1157
+ "onboarding.hostingQuestion": "Where should {{appName}} run?",
1158
+ "onboarding.hostingLocal": "Local",
1159
+ "onboarding.hostingLocalDesc": "Run the backend on this machine.",
1160
+ "onboarding.hostingRemote": "Remote",
1161
+ "onboarding.hostingRemoteDesc": "Connect to an existing backend with its address and access key.",
1162
+ "onboarding.hostingCloud": "Cloud",
1163
+ "onboarding.hostingCloudDesc": "Use Eliza Cloud or connect to a remote backend.",
1164
+ "onboarding.hostingElizaCloudDesc": "Use Eliza Cloud for managed hosting and 24/7 availability.",
1165
+ "onboarding.cloudQuestion": "Choose a cloud setup",
1166
+ "onboarding.cloudManaged": "Eliza Cloud",
1167
+ "onboarding.cloudManagedDesc": "Provision a managed container and connect to it.",
1168
+ "onboarding.cloudRemote": "Remote {{appName}}",
1169
+ "onboarding.cloudRemoteDesc": "Connect to an existing backend with its address and access key.",
1170
+ "onboarding.remoteTitle": "Remote {{appName}}",
1171
+ "onboarding.remoteAddress": "Backend address",
1172
+ "onboarding.remoteAddressPlaceholder": "https://my-eliza.example.com",
1173
+ "onboarding.remoteAccessKey": "Access key",
1174
+ "onboarding.remoteAccessKeyPlaceholder": "Paste the ELIZA_API_TOKEN value",
1175
+ "onboarding.remoteConnect": "Connect remote backend",
1176
+ "onboarding.remoteConnectedDesc": "Connected to your remote {{appName}} backend. Continue configuring it here.",
1177
+ "onboarding.neuralLinkTitle": "Neural Link",
1178
+ "onboarding.chooseProvider": "Choose your AI provider",
1179
+ "onboarding.change": "Change",
1180
+ "onboarding.login": "Login",
1181
+ "onboarding.apiKey": "API Key",
1182
+ "onboarding.connected": "Connected",
1183
+ "onboarding.connecting": "Connecting...",
1184
+ "onboarding.connectAccount": "Connect Account",
1185
+ "onboarding.freeCredits": "Free credits to get started.",
1186
+ "onboarding.useExistingKey": "Use this if you already have a key.",
1187
+ "onboarding.getOneHere": "Get one here",
1188
+ "onboarding.setupToken": "Setup Token",
1189
+ "onboarding.oauthLogin": "OAuth Login",
1190
+ "onboarding.enterSetupToken": "Enter your setup token",
1191
+ "onboarding.setupTokenInstructions": "How to get your setup token:\n\n• Option A: Run claude setup-token in your terminal\n\n• Option B: Go to claude.ai/settings/api → \"Claude Code\" → \"Use setup token\"",
1192
+ "onboarding.connectedToClaude": "Connected to Claude",
1193
+ "onboarding.claudeSubscriptionReady": "Your Claude subscription is ready to use.",
1194
+ "onboarding.loginWithAnthropic": "Login with Claude",
1195
+ "onboarding.requiresClaudeSub": "Requires a Claude Pro or Max subscription.",
1196
+ "onboarding.authCodeInstructions": "After logging in, you will receive an authorization code.\nCopy and paste it below.",
1197
+ "onboarding.pasteAuthCode": "Paste authorization code...",
1198
+ "onboarding.connect": "Connect",
1199
+ "onboarding.connectedToChatGPT": "Connected to ChatGPT",
1200
+ "onboarding.chatgptSubscriptionReady": "Your ChatGPT subscription is ready to use.",
1201
+ "onboarding.loginWithOpenAI": "Login with OpenAI",
1202
+ "onboarding.requiresChatGPTSub": "Requires a ChatGPT Plus or Pro subscription.",
1203
+ "onboarding.almostThere": "Almost there!",
1204
+ "onboarding.redirectInstructions": "After logging in, your browser will redirect to",
1205
+ "onboarding.copyEntireUrl": ". Copy the entire URL from your browser's address bar.",
1206
+ "onboarding.completeLogin": "Complete Login",
1207
+ "onboarding.startOver": "Start Over",
1208
+ "onboarding.enterApiKey": "Enter your API key...",
1209
+ "onboarding.keyFormatWarning": "Key format looks incorrect. Double-check and try again.",
1210
+ "onboarding.ollamaNoConfig": "No configuration needed. Ollama will be used automatically.",
1211
+ "onboarding.primaryModelOptional": "Primary Model (optional)",
1212
+ "onboarding.useDefaultModel": "Use default model",
1213
+ "onboarding.customModel": "Custom model...",
1214
+ "onboarding.piCredentialsHint": "Uses credentials from ~/.pi/agent/auth.json.",
1215
+ "onboarding.piDropdownHint": " Pick from the dropdown or choose a custom model.",
1216
+ "onboarding.piManualHint": " Enter provider/model manually if you want an override.",
1217
+ "onboarding.selectModel": "Select Model",
1218
+ "onboarding.confirm": "Confirm",
1219
+ "onboarding.loginSessionExpired": "Login session expired. Click 'Start Over' and try again.",
1220
+ "onboarding.networkError": "Network error — check your connection and try again.",
1221
+ "onboarding.systemAccessTitle": "System Access",
1222
+ "onboarding.readyTitle": "Ready",
1223
+ "onboarding.companionReady": "{{name}} is ready.",
1224
+ "onboarding.allConfigured": "All systems configured. You can adjust settings anytime.",
1225
+ "onboarding.enter": "Enter",
1226
+ "onboarding.recommended": "Recommended",
1227
+ "onboarding.next": "Next",
1228
+ "onboarding.rpcTitle": "Blockchain Access",
1229
+ "onboarding.rpcQuestion": "Configure blockchain RPC providers?",
1230
+ "onboarding.rpcDesc": "RPC providers give your agent access to blockchain data for wallet & trading. You can skip this and configure it later in Settings.",
1231
+ "onboarding.rpcElizaCloud": "Use Eliza Cloud",
1232
+ "onboarding.rpcElizaCloudDesc": "All chains included. No API keys needed.",
1233
+ "onboarding.rpcBringKeys": "Bring Your Own Keys",
1234
+ "onboarding.rpcAlchemyKey": "Alchemy API Key",
1235
+ "onboarding.rpcHeliusKey": "Helius API Key (Solana)",
1236
+ "onboarding.rpcBirdeyeKey": "Birdeye API Key (Solana)",
1237
+ "onboarding.rpcSkip": "Skip for now",
1238
+ "onboarding.rpcConnectedCloud": "Connected via Eliza Cloud"
1239
+ }