@downcity/plugins 1.0.4

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 (1312) hide show
  1. package/bin/BuiltinPlugins.d.ts +23 -0
  2. package/bin/BuiltinPlugins.d.ts.map +1 -0
  3. package/bin/BuiltinPlugins.js +42 -0
  4. package/bin/BuiltinPlugins.js.map +1 -0
  5. package/bin/asr/Config.d.ts +43 -0
  6. package/bin/asr/Config.d.ts.map +1 -0
  7. package/bin/asr/Config.js +107 -0
  8. package/bin/asr/Config.js.map +1 -0
  9. package/bin/asr/Dependency.d.ts +77 -0
  10. package/bin/asr/Dependency.d.ts.map +1 -0
  11. package/bin/asr/Dependency.js +238 -0
  12. package/bin/asr/Dependency.js.map +1 -0
  13. package/bin/asr/InboundAugment.d.ts +17 -0
  14. package/bin/asr/InboundAugment.d.ts.map +1 -0
  15. package/bin/asr/InboundAugment.js +47 -0
  16. package/bin/asr/InboundAugment.js.map +1 -0
  17. package/bin/asr/ModelCatalog.d.ts +29 -0
  18. package/bin/asr/ModelCatalog.d.ts.map +1 -0
  19. package/bin/asr/ModelCatalog.js +25 -0
  20. package/bin/asr/ModelCatalog.js.map +1 -0
  21. package/bin/asr/Plugin.d.ts +18 -0
  22. package/bin/asr/Plugin.d.ts.map +1 -0
  23. package/bin/asr/Plugin.js +481 -0
  24. package/bin/asr/Plugin.js.map +1 -0
  25. package/bin/auth/Plugin.d.ts +18 -0
  26. package/bin/auth/Plugin.d.ts.map +1 -0
  27. package/bin/auth/Plugin.js +190 -0
  28. package/bin/auth/Plugin.js.map +1 -0
  29. package/bin/auth/runtime/AuthorizationConfig.d.ts +41 -0
  30. package/bin/auth/runtime/AuthorizationConfig.d.ts.map +1 -0
  31. package/bin/auth/runtime/AuthorizationConfig.js +185 -0
  32. package/bin/auth/runtime/AuthorizationConfig.js.map +1 -0
  33. package/bin/auth/runtime/AuthorizationPolicy.d.ts +28 -0
  34. package/bin/auth/runtime/AuthorizationPolicy.d.ts.map +1 -0
  35. package/bin/auth/runtime/AuthorizationPolicy.js +124 -0
  36. package/bin/auth/runtime/AuthorizationPolicy.js.map +1 -0
  37. package/bin/auth/runtime/AuthorizationStore.d.ts +29 -0
  38. package/bin/auth/runtime/AuthorizationStore.d.ts.map +1 -0
  39. package/bin/auth/runtime/AuthorizationStore.js +179 -0
  40. package/bin/auth/runtime/AuthorizationStore.js.map +1 -0
  41. package/bin/auth/types/AuthPlugin.d.ts +407 -0
  42. package/bin/auth/types/AuthPlugin.d.ts.map +1 -0
  43. package/bin/auth/types/AuthPlugin.js +115 -0
  44. package/bin/auth/types/AuthPlugin.js.map +1 -0
  45. package/bin/chat/Action.d.ts +125 -0
  46. package/bin/chat/Action.d.ts.map +1 -0
  47. package/bin/chat/Action.js +376 -0
  48. package/bin/chat/Action.js.map +1 -0
  49. package/bin/chat/ChatPlugin.d.ts +89 -0
  50. package/bin/chat/ChatPlugin.d.ts.map +1 -0
  51. package/bin/chat/ChatPlugin.js +208 -0
  52. package/bin/chat/ChatPlugin.js.map +1 -0
  53. package/bin/chat/ChatPluginTypes.d.ts +122 -0
  54. package/bin/chat/ChatPluginTypes.d.ts.map +1 -0
  55. package/bin/chat/ChatPluginTypes.js +10 -0
  56. package/bin/chat/ChatPluginTypes.js.map +1 -0
  57. package/bin/chat/Index.d.ts +9 -0
  58. package/bin/chat/Index.d.ts.map +1 -0
  59. package/bin/chat/Index.js +9 -0
  60. package/bin/chat/Index.js.map +1 -0
  61. package/bin/chat/PROMPT.direct.d.ts +7 -0
  62. package/bin/chat/PROMPT.direct.d.ts.map +1 -0
  63. package/bin/chat/PROMPT.direct.js +8 -0
  64. package/bin/chat/PROMPT.direct.js.map +1 -0
  65. package/bin/chat/accounts/ChannelAccountManager.d.ts +61 -0
  66. package/bin/chat/accounts/ChannelAccountManager.d.ts.map +1 -0
  67. package/bin/chat/accounts/ChannelAccountManager.js +264 -0
  68. package/bin/chat/accounts/ChannelAccountManager.js.map +1 -0
  69. package/bin/chat/accounts/Crypto.d.ts +20 -0
  70. package/bin/chat/accounts/Crypto.d.ts.map +1 -0
  71. package/bin/chat/accounts/Crypto.js +75 -0
  72. package/bin/chat/accounts/Crypto.js.map +1 -0
  73. package/bin/chat/accounts/Store.d.ts +38 -0
  74. package/bin/chat/accounts/Store.d.ts.map +1 -0
  75. package/bin/chat/accounts/Store.js +220 -0
  76. package/bin/chat/accounts/Store.js.map +1 -0
  77. package/bin/chat/channels/BaseChatChannel.d.ts +201 -0
  78. package/bin/chat/channels/BaseChatChannel.d.ts.map +1 -0
  79. package/bin/chat/channels/BaseChatChannel.js +294 -0
  80. package/bin/chat/channels/BaseChatChannel.js.map +1 -0
  81. package/bin/chat/channels/BaseChatChannelQueue.d.ts +73 -0
  82. package/bin/chat/channels/BaseChatChannelQueue.d.ts.map +1 -0
  83. package/bin/chat/channels/BaseChatChannelQueue.js +237 -0
  84. package/bin/chat/channels/BaseChatChannelQueue.js.map +1 -0
  85. package/bin/chat/channels/BaseChatChannelSupport.d.ts +189 -0
  86. package/bin/chat/channels/BaseChatChannelSupport.d.ts.map +1 -0
  87. package/bin/chat/channels/BaseChatChannelSupport.js +141 -0
  88. package/bin/chat/channels/BaseChatChannelSupport.js.map +1 -0
  89. package/bin/chat/channels/BotInfoProvider.d.ts +18 -0
  90. package/bin/chat/channels/BotInfoProvider.d.ts.map +1 -0
  91. package/bin/chat/channels/BotInfoProvider.js +32 -0
  92. package/bin/chat/channels/BotInfoProvider.js.map +1 -0
  93. package/bin/chat/channels/Configuration.d.ts +27 -0
  94. package/bin/chat/channels/Configuration.d.ts.map +1 -0
  95. package/bin/chat/channels/Configuration.js +19 -0
  96. package/bin/chat/channels/Configuration.js.map +1 -0
  97. package/bin/chat/channels/ConfigurationRegistry.d.ts +18 -0
  98. package/bin/chat/channels/ConfigurationRegistry.d.ts.map +1 -0
  99. package/bin/chat/channels/ConfigurationRegistry.js +31 -0
  100. package/bin/chat/channels/ConfigurationRegistry.js.map +1 -0
  101. package/bin/chat/channels/feishu/BotInfo.d.ts +20 -0
  102. package/bin/chat/channels/feishu/BotInfo.d.ts.map +1 -0
  103. package/bin/chat/channels/feishu/BotInfo.js +147 -0
  104. package/bin/chat/channels/feishu/BotInfo.js.map +1 -0
  105. package/bin/chat/channels/feishu/Configuration.d.ts +17 -0
  106. package/bin/chat/channels/feishu/Configuration.d.ts.map +1 -0
  107. package/bin/chat/channels/feishu/Configuration.js +59 -0
  108. package/bin/chat/channels/feishu/Configuration.js.map +1 -0
  109. package/bin/chat/channels/feishu/Feishu.d.ts +116 -0
  110. package/bin/chat/channels/feishu/Feishu.d.ts.map +1 -0
  111. package/bin/chat/channels/feishu/Feishu.js +326 -0
  112. package/bin/chat/channels/feishu/Feishu.js.map +1 -0
  113. package/bin/chat/channels/feishu/FeishuInbound.d.ts +21 -0
  114. package/bin/chat/channels/feishu/FeishuInbound.d.ts.map +1 -0
  115. package/bin/chat/channels/feishu/FeishuInbound.js +43 -0
  116. package/bin/chat/channels/feishu/FeishuInbound.js.map +1 -0
  117. package/bin/chat/channels/feishu/FeishuMessageHandler.d.ts +155 -0
  118. package/bin/chat/channels/feishu/FeishuMessageHandler.d.ts.map +1 -0
  119. package/bin/chat/channels/feishu/FeishuMessageHandler.js +247 -0
  120. package/bin/chat/channels/feishu/FeishuMessageHandler.js.map +1 -0
  121. package/bin/chat/channels/feishu/FeishuPlatformClient.d.ts +130 -0
  122. package/bin/chat/channels/feishu/FeishuPlatformClient.d.ts.map +1 -0
  123. package/bin/chat/channels/feishu/FeishuPlatformClient.js +316 -0
  124. package/bin/chat/channels/feishu/FeishuPlatformClient.js.map +1 -0
  125. package/bin/chat/channels/feishu/FeishuPlatformLookup.d.ts +102 -0
  126. package/bin/chat/channels/feishu/FeishuPlatformLookup.d.ts.map +1 -0
  127. package/bin/chat/channels/feishu/FeishuPlatformLookup.js +299 -0
  128. package/bin/chat/channels/feishu/FeishuPlatformLookup.js.map +1 -0
  129. package/bin/chat/channels/feishu/FeishuPlatformMessaging.d.ts +49 -0
  130. package/bin/chat/channels/feishu/FeishuPlatformMessaging.d.ts.map +1 -0
  131. package/bin/chat/channels/feishu/FeishuPlatformMessaging.js +139 -0
  132. package/bin/chat/channels/feishu/FeishuPlatformMessaging.js.map +1 -0
  133. package/bin/chat/channels/feishu/InboundAttachment.d.ts +31 -0
  134. package/bin/chat/channels/feishu/InboundAttachment.d.ts.map +1 -0
  135. package/bin/chat/channels/feishu/InboundAttachment.js +222 -0
  136. package/bin/chat/channels/feishu/InboundAttachment.js.map +1 -0
  137. package/bin/chat/channels/feishu/PROMPT.direct.d.ts +7 -0
  138. package/bin/chat/channels/feishu/PROMPT.direct.d.ts.map +1 -0
  139. package/bin/chat/channels/feishu/PROMPT.direct.js +8 -0
  140. package/bin/chat/channels/feishu/PROMPT.direct.js.map +1 -0
  141. package/bin/chat/channels/feishu/PostMessage.d.ts +48 -0
  142. package/bin/chat/channels/feishu/PostMessage.d.ts.map +1 -0
  143. package/bin/chat/channels/feishu/PostMessage.js +413 -0
  144. package/bin/chat/channels/feishu/PostMessage.js.map +1 -0
  145. package/bin/chat/channels/feishu/ReplyContext.d.ts +18 -0
  146. package/bin/chat/channels/feishu/ReplyContext.d.ts.map +1 -0
  147. package/bin/chat/channels/feishu/ReplyContext.js +56 -0
  148. package/bin/chat/channels/feishu/ReplyContext.js.map +1 -0
  149. package/bin/chat/channels/feishu/Shared.d.ts +21 -0
  150. package/bin/chat/channels/feishu/Shared.d.ts.map +1 -0
  151. package/bin/chat/channels/feishu/Shared.js +69 -0
  152. package/bin/chat/channels/feishu/Shared.js.map +1 -0
  153. package/bin/chat/channels/feishu/types/FeishuChannel.d.ts +127 -0
  154. package/bin/chat/channels/feishu/types/FeishuChannel.d.ts.map +1 -0
  155. package/bin/chat/channels/feishu/types/FeishuChannel.js +9 -0
  156. package/bin/chat/channels/feishu/types/FeishuChannel.js.map +1 -0
  157. package/bin/chat/channels/qq/BotInfo.d.ts +19 -0
  158. package/bin/chat/channels/qq/BotInfo.d.ts.map +1 -0
  159. package/bin/chat/channels/qq/BotInfo.js +112 -0
  160. package/bin/chat/channels/qq/BotInfo.js.map +1 -0
  161. package/bin/chat/channels/qq/Configuration.d.ts +17 -0
  162. package/bin/chat/channels/qq/Configuration.d.ts.map +1 -0
  163. package/bin/chat/channels/qq/Configuration.js +59 -0
  164. package/bin/chat/channels/qq/Configuration.js.map +1 -0
  165. package/bin/chat/channels/qq/PROMPT.direct.d.ts +7 -0
  166. package/bin/chat/channels/qq/PROMPT.direct.d.ts.map +1 -0
  167. package/bin/chat/channels/qq/PROMPT.direct.js +8 -0
  168. package/bin/chat/channels/qq/PROMPT.direct.js.map +1 -0
  169. package/bin/chat/channels/qq/QQ.d.ts +92 -0
  170. package/bin/chat/channels/qq/QQ.d.ts.map +1 -0
  171. package/bin/chat/channels/qq/QQ.js +287 -0
  172. package/bin/chat/channels/qq/QQ.js.map +1 -0
  173. package/bin/chat/channels/qq/QQEventCapture.d.ts +22 -0
  174. package/bin/chat/channels/qq/QQEventCapture.d.ts.map +1 -0
  175. package/bin/chat/channels/qq/QQEventCapture.js +67 -0
  176. package/bin/chat/channels/qq/QQEventCapture.js.map +1 -0
  177. package/bin/chat/channels/qq/QQGatewayAuth.d.ts +119 -0
  178. package/bin/chat/channels/qq/QQGatewayAuth.d.ts.map +1 -0
  179. package/bin/chat/channels/qq/QQGatewayAuth.js +186 -0
  180. package/bin/chat/channels/qq/QQGatewayAuth.js.map +1 -0
  181. package/bin/chat/channels/qq/QQGatewayClient.d.ts +155 -0
  182. package/bin/chat/channels/qq/QQGatewayClient.d.ts.map +1 -0
  183. package/bin/chat/channels/qq/QQGatewayClient.js +381 -0
  184. package/bin/chat/channels/qq/QQGatewayClient.js.map +1 -0
  185. package/bin/chat/channels/qq/QQGatewayConnection.d.ts +65 -0
  186. package/bin/chat/channels/qq/QQGatewayConnection.d.ts.map +1 -0
  187. package/bin/chat/channels/qq/QQGatewayConnection.js +110 -0
  188. package/bin/chat/channels/qq/QQGatewayConnection.js.map +1 -0
  189. package/bin/chat/channels/qq/QQGatewayHeartbeat.d.ts +59 -0
  190. package/bin/chat/channels/qq/QQGatewayHeartbeat.d.ts.map +1 -0
  191. package/bin/chat/channels/qq/QQGatewayHeartbeat.js +58 -0
  192. package/bin/chat/channels/qq/QQGatewayHeartbeat.js.map +1 -0
  193. package/bin/chat/channels/qq/QQGatewayProtocol.d.ts +86 -0
  194. package/bin/chat/channels/qq/QQGatewayProtocol.d.ts.map +1 -0
  195. package/bin/chat/channels/qq/QQGatewayProtocol.js +93 -0
  196. package/bin/chat/channels/qq/QQGatewayProtocol.js.map +1 -0
  197. package/bin/chat/channels/qq/QQGatewaySend.d.ts +84 -0
  198. package/bin/chat/channels/qq/QQGatewaySend.d.ts.map +1 -0
  199. package/bin/chat/channels/qq/QQGatewaySend.js +120 -0
  200. package/bin/chat/channels/qq/QQGatewaySend.js.map +1 -0
  201. package/bin/chat/channels/qq/QQGatewaySupport.d.ts +39 -0
  202. package/bin/chat/channels/qq/QQGatewaySupport.d.ts.map +1 -0
  203. package/bin/chat/channels/qq/QQGatewaySupport.js +137 -0
  204. package/bin/chat/channels/qq/QQGatewaySupport.js.map +1 -0
  205. package/bin/chat/channels/qq/QQInbound.d.ts +47 -0
  206. package/bin/chat/channels/qq/QQInbound.d.ts.map +1 -0
  207. package/bin/chat/channels/qq/QQInbound.js +235 -0
  208. package/bin/chat/channels/qq/QQInbound.js.map +1 -0
  209. package/bin/chat/channels/qq/QQInboundDedupe.d.ts +48 -0
  210. package/bin/chat/channels/qq/QQInboundDedupe.d.ts.map +1 -0
  211. package/bin/chat/channels/qq/QQInboundDedupe.js +108 -0
  212. package/bin/chat/channels/qq/QQInboundDedupe.js.map +1 -0
  213. package/bin/chat/channels/qq/QQMessageHandler.d.ts +129 -0
  214. package/bin/chat/channels/qq/QQMessageHandler.d.ts.map +1 -0
  215. package/bin/chat/channels/qq/QQMessageHandler.js +284 -0
  216. package/bin/chat/channels/qq/QQMessageHandler.js.map +1 -0
  217. package/bin/chat/channels/qq/QQSendSupport.d.ts +20 -0
  218. package/bin/chat/channels/qq/QQSendSupport.d.ts.map +1 -0
  219. package/bin/chat/channels/qq/QQSendSupport.js +86 -0
  220. package/bin/chat/channels/qq/QQSendSupport.js.map +1 -0
  221. package/bin/chat/channels/qq/QQSupport.d.ts +102 -0
  222. package/bin/chat/channels/qq/QQSupport.d.ts.map +1 -0
  223. package/bin/chat/channels/qq/QQSupport.js +172 -0
  224. package/bin/chat/channels/qq/QQSupport.js.map +1 -0
  225. package/bin/chat/channels/qq/VoiceInput.d.ts +64 -0
  226. package/bin/chat/channels/qq/VoiceInput.d.ts.map +1 -0
  227. package/bin/chat/channels/qq/VoiceInput.js +299 -0
  228. package/bin/chat/channels/qq/VoiceInput.js.map +1 -0
  229. package/bin/chat/channels/qq/types/QqChannel.d.ts +485 -0
  230. package/bin/chat/channels/qq/types/QqChannel.d.ts.map +1 -0
  231. package/bin/chat/channels/qq/types/QqChannel.js +42 -0
  232. package/bin/chat/channels/qq/types/QqChannel.js.map +1 -0
  233. package/bin/chat/channels/qq/types/QqGatewaySupport.d.ts +82 -0
  234. package/bin/chat/channels/qq/types/QqGatewaySupport.d.ts.map +1 -0
  235. package/bin/chat/channels/qq/types/QqGatewaySupport.js +9 -0
  236. package/bin/chat/channels/qq/types/QqGatewaySupport.js.map +1 -0
  237. package/bin/chat/channels/telegram/ApiClient.d.ts +99 -0
  238. package/bin/chat/channels/telegram/ApiClient.d.ts.map +1 -0
  239. package/bin/chat/channels/telegram/ApiClient.js +306 -0
  240. package/bin/chat/channels/telegram/ApiClient.js.map +1 -0
  241. package/bin/chat/channels/telegram/Bot.d.ts +97 -0
  242. package/bin/chat/channels/telegram/Bot.d.ts.map +1 -0
  243. package/bin/chat/channels/telegram/Bot.js +246 -0
  244. package/bin/chat/channels/telegram/Bot.js.map +1 -0
  245. package/bin/chat/channels/telegram/BotInfo.d.ts +19 -0
  246. package/bin/chat/channels/telegram/BotInfo.d.ts.map +1 -0
  247. package/bin/chat/channels/telegram/BotInfo.js +71 -0
  248. package/bin/chat/channels/telegram/BotInfo.js.map +1 -0
  249. package/bin/chat/channels/telegram/Configuration.d.ts +17 -0
  250. package/bin/chat/channels/telegram/Configuration.d.ts.map +1 -0
  251. package/bin/chat/channels/telegram/Configuration.js +59 -0
  252. package/bin/chat/channels/telegram/Configuration.js.map +1 -0
  253. package/bin/chat/channels/telegram/Handlers.d.ts +42 -0
  254. package/bin/chat/channels/telegram/Handlers.d.ts.map +1 -0
  255. package/bin/chat/channels/telegram/Handlers.js +45 -0
  256. package/bin/chat/channels/telegram/Handlers.js.map +1 -0
  257. package/bin/chat/channels/telegram/PROMPT.direct.d.ts +7 -0
  258. package/bin/chat/channels/telegram/PROMPT.direct.d.ts.map +1 -0
  259. package/bin/chat/channels/telegram/PROMPT.direct.js +8 -0
  260. package/bin/chat/channels/telegram/PROMPT.direct.js.map +1 -0
  261. package/bin/chat/channels/telegram/ReplyContext.d.ts +14 -0
  262. package/bin/chat/channels/telegram/ReplyContext.d.ts.map +1 -0
  263. package/bin/chat/channels/telegram/ReplyContext.js +57 -0
  264. package/bin/chat/channels/telegram/ReplyContext.js.map +1 -0
  265. package/bin/chat/channels/telegram/Shared.d.ts +221 -0
  266. package/bin/chat/channels/telegram/Shared.d.ts.map +1 -0
  267. package/bin/chat/channels/telegram/Shared.js +171 -0
  268. package/bin/chat/channels/telegram/Shared.js.map +1 -0
  269. package/bin/chat/channels/telegram/StateStore.d.ts +27 -0
  270. package/bin/chat/channels/telegram/StateStore.d.ts.map +1 -0
  271. package/bin/chat/channels/telegram/StateStore.js +53 -0
  272. package/bin/chat/channels/telegram/StateStore.js.map +1 -0
  273. package/bin/chat/channels/telegram/TelegramInbound.d.ts +46 -0
  274. package/bin/chat/channels/telegram/TelegramInbound.d.ts.map +1 -0
  275. package/bin/chat/channels/telegram/TelegramInbound.js +148 -0
  276. package/bin/chat/channels/telegram/TelegramInbound.js.map +1 -0
  277. package/bin/chat/channels/telegram/TelegramMessageHandler.d.ts +142 -0
  278. package/bin/chat/channels/telegram/TelegramMessageHandler.d.ts.map +1 -0
  279. package/bin/chat/channels/telegram/TelegramMessageHandler.js +267 -0
  280. package/bin/chat/channels/telegram/TelegramMessageHandler.js.map +1 -0
  281. package/bin/chat/channels/telegram/TelegramPendingUpdates.d.ts +55 -0
  282. package/bin/chat/channels/telegram/TelegramPendingUpdates.d.ts.map +1 -0
  283. package/bin/chat/channels/telegram/TelegramPendingUpdates.js +125 -0
  284. package/bin/chat/channels/telegram/TelegramPendingUpdates.js.map +1 -0
  285. package/bin/chat/channels/telegram/TelegramPlatformClient.d.ts +161 -0
  286. package/bin/chat/channels/telegram/TelegramPlatformClient.d.ts.map +1 -0
  287. package/bin/chat/channels/telegram/TelegramPlatformClient.js +366 -0
  288. package/bin/chat/channels/telegram/TelegramPlatformClient.js.map +1 -0
  289. package/bin/chat/runtime/ChannelContextStore.d.ts +78 -0
  290. package/bin/chat/runtime/ChannelContextStore.d.ts.map +1 -0
  291. package/bin/chat/runtime/ChannelContextStore.js +336 -0
  292. package/bin/chat/runtime/ChannelContextStore.js.map +1 -0
  293. package/bin/chat/runtime/ChatActionExecution.d.ts +145 -0
  294. package/bin/chat/runtime/ChatActionExecution.d.ts.map +1 -0
  295. package/bin/chat/runtime/ChatActionExecution.js +287 -0
  296. package/bin/chat/runtime/ChatActionExecution.js.map +1 -0
  297. package/bin/chat/runtime/ChatActionInput.d.ts +22 -0
  298. package/bin/chat/runtime/ChatActionInput.d.ts.map +1 -0
  299. package/bin/chat/runtime/ChatActionInput.js +114 -0
  300. package/bin/chat/runtime/ChatActionInput.js.map +1 -0
  301. package/bin/chat/runtime/ChatActionInputSupport.d.ts +33 -0
  302. package/bin/chat/runtime/ChatActionInputSupport.d.ts.map +1 -0
  303. package/bin/chat/runtime/ChatActionInputSupport.js +66 -0
  304. package/bin/chat/runtime/ChatActionInputSupport.js.map +1 -0
  305. package/bin/chat/runtime/ChatChannelActions.d.ts +122 -0
  306. package/bin/chat/runtime/ChatChannelActions.d.ts.map +1 -0
  307. package/bin/chat/runtime/ChatChannelActions.js +231 -0
  308. package/bin/chat/runtime/ChatChannelActions.js.map +1 -0
  309. package/bin/chat/runtime/ChatChannelConfig.d.ts +61 -0
  310. package/bin/chat/runtime/ChatChannelConfig.d.ts.map +1 -0
  311. package/bin/chat/runtime/ChatChannelConfig.js +260 -0
  312. package/bin/chat/runtime/ChatChannelConfig.js.map +1 -0
  313. package/bin/chat/runtime/ChatChannelCore.d.ts +49 -0
  314. package/bin/chat/runtime/ChatChannelCore.d.ts.map +1 -0
  315. package/bin/chat/runtime/ChatChannelCore.js +109 -0
  316. package/bin/chat/runtime/ChatChannelCore.js.map +1 -0
  317. package/bin/chat/runtime/ChatChannelFacade.d.ts +12 -0
  318. package/bin/chat/runtime/ChatChannelFacade.d.ts.map +1 -0
  319. package/bin/chat/runtime/ChatChannelFacade.js +12 -0
  320. package/bin/chat/runtime/ChatChannelFacade.js.map +1 -0
  321. package/bin/chat/runtime/ChatChannelLifecycle.d.ts +28 -0
  322. package/bin/chat/runtime/ChatChannelLifecycle.d.ts.map +1 -0
  323. package/bin/chat/runtime/ChatChannelLifecycle.js +132 -0
  324. package/bin/chat/runtime/ChatChannelLifecycle.js.map +1 -0
  325. package/bin/chat/runtime/ChatHistoryStore.d.ts +72 -0
  326. package/bin/chat/runtime/ChatHistoryStore.d.ts.map +1 -0
  327. package/bin/chat/runtime/ChatHistoryStore.js +219 -0
  328. package/bin/chat/runtime/ChatHistoryStore.js.map +1 -0
  329. package/bin/chat/runtime/ChatIngressStore.d.ts +44 -0
  330. package/bin/chat/runtime/ChatIngressStore.d.ts.map +1 -0
  331. package/bin/chat/runtime/ChatIngressStore.js +51 -0
  332. package/bin/chat/runtime/ChatIngressStore.js.map +1 -0
  333. package/bin/chat/runtime/ChatMetaStore.d.ts +68 -0
  334. package/bin/chat/runtime/ChatMetaStore.d.ts.map +1 -0
  335. package/bin/chat/runtime/ChatMetaStore.js +143 -0
  336. package/bin/chat/runtime/ChatMetaStore.js.map +1 -0
  337. package/bin/chat/runtime/ChatPluginActionRegistry.d.ts +17 -0
  338. package/bin/chat/runtime/ChatPluginActionRegistry.d.ts.map +1 -0
  339. package/bin/chat/runtime/ChatPluginActionRegistry.js +304 -0
  340. package/bin/chat/runtime/ChatPluginActionRegistry.js.map +1 -0
  341. package/bin/chat/runtime/ChatPluginActions.d.ts +5 -0
  342. package/bin/chat/runtime/ChatPluginActions.d.ts.map +1 -0
  343. package/bin/chat/runtime/ChatPluginActions.js +5 -0
  344. package/bin/chat/runtime/ChatPluginActions.js.map +1 -0
  345. package/bin/chat/runtime/ChatPluginSystem.d.ts +22 -0
  346. package/bin/chat/runtime/ChatPluginSystem.d.ts.map +1 -0
  347. package/bin/chat/runtime/ChatPluginSystem.js +44 -0
  348. package/bin/chat/runtime/ChatPluginSystem.js.map +1 -0
  349. package/bin/chat/runtime/ChatPromptAssets.d.ts +24 -0
  350. package/bin/chat/runtime/ChatPromptAssets.d.ts.map +1 -0
  351. package/bin/chat/runtime/ChatPromptAssets.js +28 -0
  352. package/bin/chat/runtime/ChatPromptAssets.js.map +1 -0
  353. package/bin/chat/runtime/ChatQueue.d.ts +40 -0
  354. package/bin/chat/runtime/ChatQueue.d.ts.map +1 -0
  355. package/bin/chat/runtime/ChatQueue.js +52 -0
  356. package/bin/chat/runtime/ChatQueue.js.map +1 -0
  357. package/bin/chat/runtime/ChatQueueReplyDispatch.d.ts +31 -0
  358. package/bin/chat/runtime/ChatQueueReplyDispatch.d.ts.map +1 -0
  359. package/bin/chat/runtime/ChatQueueReplyDispatch.js +168 -0
  360. package/bin/chat/runtime/ChatQueueReplyDispatch.js.map +1 -0
  361. package/bin/chat/runtime/ChatQueueStore.d.ts +85 -0
  362. package/bin/chat/runtime/ChatQueueStore.d.ts.map +1 -0
  363. package/bin/chat/runtime/ChatQueueStore.js +130 -0
  364. package/bin/chat/runtime/ChatQueueStore.js.map +1 -0
  365. package/bin/chat/runtime/ChatQueueWorker.d.ts +83 -0
  366. package/bin/chat/runtime/ChatQueueWorker.d.ts.map +1 -0
  367. package/bin/chat/runtime/ChatQueueWorker.js +406 -0
  368. package/bin/chat/runtime/ChatQueueWorker.js.map +1 -0
  369. package/bin/chat/runtime/ChatQueueWorkerSupport.d.ts +36 -0
  370. package/bin/chat/runtime/ChatQueueWorkerSupport.d.ts.map +1 -0
  371. package/bin/chat/runtime/ChatQueueWorkerSupport.js +101 -0
  372. package/bin/chat/runtime/ChatQueueWorkerSupport.js.map +1 -0
  373. package/bin/chat/runtime/ChatSendActionInput.d.ts +23 -0
  374. package/bin/chat/runtime/ChatSendActionInput.d.ts.map +1 -0
  375. package/bin/chat/runtime/ChatSendActionInput.js +205 -0
  376. package/bin/chat/runtime/ChatSendActionInput.js.map +1 -0
  377. package/bin/chat/runtime/ChatSendMetadata.d.ts +20 -0
  378. package/bin/chat/runtime/ChatSendMetadata.d.ts.map +1 -0
  379. package/bin/chat/runtime/ChatSendMetadata.js +130 -0
  380. package/bin/chat/runtime/ChatSendMetadata.js.map +1 -0
  381. package/bin/chat/runtime/ChatSendRegistry.d.ts +27 -0
  382. package/bin/chat/runtime/ChatSendRegistry.d.ts.map +1 -0
  383. package/bin/chat/runtime/ChatSendRegistry.js +26 -0
  384. package/bin/chat/runtime/ChatSendRegistry.js.map +1 -0
  385. package/bin/chat/runtime/ChatSession.d.ts +97 -0
  386. package/bin/chat/runtime/ChatSession.d.ts.map +1 -0
  387. package/bin/chat/runtime/ChatSession.js +84 -0
  388. package/bin/chat/runtime/ChatSession.js.map +1 -0
  389. package/bin/chat/runtime/ChatSessionContextComposer.d.ts +45 -0
  390. package/bin/chat/runtime/ChatSessionContextComposer.d.ts.map +1 -0
  391. package/bin/chat/runtime/ChatSessionContextComposer.js +60 -0
  392. package/bin/chat/runtime/ChatSessionContextComposer.js.map +1 -0
  393. package/bin/chat/runtime/ChatSessionDelete.d.ts +29 -0
  394. package/bin/chat/runtime/ChatSessionDelete.d.ts.map +1 -0
  395. package/bin/chat/runtime/ChatSessionDelete.js +76 -0
  396. package/bin/chat/runtime/ChatSessionDelete.js.map +1 -0
  397. package/bin/chat/runtime/ChatSessionTypes.d.ts +30 -0
  398. package/bin/chat/runtime/ChatSessionTypes.d.ts.map +1 -0
  399. package/bin/chat/runtime/ChatSessionTypes.js +9 -0
  400. package/bin/chat/runtime/ChatSessionTypes.js.map +1 -0
  401. package/bin/chat/runtime/ChatkeySend.d.ts +67 -0
  402. package/bin/chat/runtime/ChatkeySend.d.ts.map +1 -0
  403. package/bin/chat/runtime/ChatkeySend.js +147 -0
  404. package/bin/chat/runtime/ChatkeySend.js.map +1 -0
  405. package/bin/chat/runtime/DirectDispatchParser.d.ts +22 -0
  406. package/bin/chat/runtime/DirectDispatchParser.d.ts.map +1 -0
  407. package/bin/chat/runtime/DirectDispatchParser.js +133 -0
  408. package/bin/chat/runtime/DirectDispatchParser.js.map +1 -0
  409. package/bin/chat/runtime/EnqueueDispatch.d.ts +24 -0
  410. package/bin/chat/runtime/EnqueueDispatch.d.ts.map +1 -0
  411. package/bin/chat/runtime/EnqueueDispatch.js +28 -0
  412. package/bin/chat/runtime/EnqueueDispatch.js.map +1 -0
  413. package/bin/chat/runtime/InboundAugment.d.ts +21 -0
  414. package/bin/chat/runtime/InboundAugment.d.ts.map +1 -0
  415. package/bin/chat/runtime/InboundAugment.js +50 -0
  416. package/bin/chat/runtime/InboundAugment.js.map +1 -0
  417. package/bin/chat/runtime/PluginDispatch.d.ts +43 -0
  418. package/bin/chat/runtime/PluginDispatch.d.ts.map +1 -0
  419. package/bin/chat/runtime/PluginDispatch.js +57 -0
  420. package/bin/chat/runtime/PluginDispatch.js.map +1 -0
  421. package/bin/chat/runtime/PluginPoints.d.ts +78 -0
  422. package/bin/chat/runtime/PluginPoints.d.ts.map +1 -0
  423. package/bin/chat/runtime/PluginPoints.js +78 -0
  424. package/bin/chat/runtime/PluginPoints.js.map +1 -0
  425. package/bin/chat/runtime/QueuedUserMessage.d.ts +20 -0
  426. package/bin/chat/runtime/QueuedUserMessage.d.ts.map +1 -0
  427. package/bin/chat/runtime/QueuedUserMessage.js +40 -0
  428. package/bin/chat/runtime/QueuedUserMessage.js.map +1 -0
  429. package/bin/chat/runtime/ReplyContextFormatter.d.ts +29 -0
  430. package/bin/chat/runtime/ReplyContextFormatter.d.ts.map +1 -0
  431. package/bin/chat/runtime/ReplyContextFormatter.js +74 -0
  432. package/bin/chat/runtime/ReplyContextFormatter.js.map +1 -0
  433. package/bin/chat/runtime/ReplyDispatch.d.ts +36 -0
  434. package/bin/chat/runtime/ReplyDispatch.d.ts.map +1 -0
  435. package/bin/chat/runtime/ReplyDispatch.js +51 -0
  436. package/bin/chat/runtime/ReplyDispatch.js.map +1 -0
  437. package/bin/chat/runtime/SystemPrompt.d.ts +26 -0
  438. package/bin/chat/runtime/SystemPrompt.d.ts.map +1 -0
  439. package/bin/chat/runtime/SystemPrompt.js +70 -0
  440. package/bin/chat/runtime/SystemPrompt.js.map +1 -0
  441. package/bin/chat/types/BotInfo.d.ts +97 -0
  442. package/bin/chat/types/BotInfo.d.ts.map +1 -0
  443. package/bin/chat/types/BotInfo.js +9 -0
  444. package/bin/chat/types/BotInfo.js.map +1 -0
  445. package/bin/chat/types/ChannelAccount.d.ts +226 -0
  446. package/bin/chat/types/ChannelAccount.d.ts.map +1 -0
  447. package/bin/chat/types/ChannelAccount.js +9 -0
  448. package/bin/chat/types/ChannelAccount.js.map +1 -0
  449. package/bin/chat/types/ChannelConfiguration.d.ts +146 -0
  450. package/bin/chat/types/ChannelConfiguration.d.ts.map +1 -0
  451. package/bin/chat/types/ChannelConfiguration.js +9 -0
  452. package/bin/chat/types/ChannelConfiguration.js.map +1 -0
  453. package/bin/chat/types/ChannelContext.d.ts +107 -0
  454. package/bin/chat/types/ChannelContext.d.ts.map +1 -0
  455. package/bin/chat/types/ChannelContext.js +9 -0
  456. package/bin/chat/types/ChannelContext.js.map +1 -0
  457. package/bin/chat/types/ChannelStatus.d.ts +88 -0
  458. package/bin/chat/types/ChannelStatus.d.ts.map +1 -0
  459. package/bin/chat/types/ChannelStatus.js +9 -0
  460. package/bin/chat/types/ChannelStatus.js.map +1 -0
  461. package/bin/chat/types/ChatCommand.d.ts +163 -0
  462. package/bin/chat/types/ChatCommand.d.ts.map +1 -0
  463. package/bin/chat/types/ChatCommand.js +9 -0
  464. package/bin/chat/types/ChatCommand.js.map +1 -0
  465. package/bin/chat/types/ChatDispatcher.d.ts +37 -0
  466. package/bin/chat/types/ChatDispatcher.d.ts.map +1 -0
  467. package/bin/chat/types/ChatDispatcher.js +9 -0
  468. package/bin/chat/types/ChatDispatcher.js.map +1 -0
  469. package/bin/chat/types/ChatHistory.d.ts +36 -0
  470. package/bin/chat/types/ChatHistory.d.ts.map +1 -0
  471. package/bin/chat/types/ChatHistory.js +9 -0
  472. package/bin/chat/types/ChatHistory.js.map +1 -0
  473. package/bin/chat/types/ChatMeta.d.ts +34 -0
  474. package/bin/chat/types/ChatMeta.d.ts.map +1 -0
  475. package/bin/chat/types/ChatMeta.js +10 -0
  476. package/bin/chat/types/ChatMeta.js.map +1 -0
  477. package/bin/chat/types/ChatPlugin.d.ts +238 -0
  478. package/bin/chat/types/ChatPlugin.d.ts.map +1 -0
  479. package/bin/chat/types/ChatPlugin.js +10 -0
  480. package/bin/chat/types/ChatPlugin.js.map +1 -0
  481. package/bin/chat/types/ChatPluginActionPayload.d.ts +145 -0
  482. package/bin/chat/types/ChatPluginActionPayload.d.ts.map +1 -0
  483. package/bin/chat/types/ChatPluginActionPayload.js +10 -0
  484. package/bin/chat/types/ChatPluginActionPayload.js.map +1 -0
  485. package/bin/chat/types/ChatPromptContext.d.ts +125 -0
  486. package/bin/chat/types/ChatPromptContext.d.ts.map +1 -0
  487. package/bin/chat/types/ChatPromptContext.js +10 -0
  488. package/bin/chat/types/ChatPromptContext.js.map +1 -0
  489. package/bin/chat/types/ChatQueue.d.ts +36 -0
  490. package/bin/chat/types/ChatQueue.d.ts.map +1 -0
  491. package/bin/chat/types/ChatQueue.js +9 -0
  492. package/bin/chat/types/ChatQueue.js.map +1 -0
  493. package/bin/chat/types/ChatQueueWorker.d.ts +25 -0
  494. package/bin/chat/types/ChatQueueWorker.d.ts.map +1 -0
  495. package/bin/chat/types/ChatQueueWorker.js +9 -0
  496. package/bin/chat/types/ChatQueueWorker.js.map +1 -0
  497. package/bin/chat/types/ChatRuntime.d.ts +32 -0
  498. package/bin/chat/types/ChatRuntime.d.ts.map +1 -0
  499. package/bin/chat/types/ChatRuntime.js +9 -0
  500. package/bin/chat/types/ChatRuntime.js.map +1 -0
  501. package/bin/chat/types/DirectDispatch.d.ts +115 -0
  502. package/bin/chat/types/DirectDispatch.d.ts.map +1 -0
  503. package/bin/chat/types/DirectDispatch.js +9 -0
  504. package/bin/chat/types/DirectDispatch.js.map +1 -0
  505. package/bin/chat/types/FeishuAttachment.d.ts +42 -0
  506. package/bin/chat/types/FeishuAttachment.d.ts.map +1 -0
  507. package/bin/chat/types/FeishuAttachment.js +9 -0
  508. package/bin/chat/types/FeishuAttachment.js.map +1 -0
  509. package/bin/chat/types/FeishuInboundAttachment.d.ts +114 -0
  510. package/bin/chat/types/FeishuInboundAttachment.d.ts.map +1 -0
  511. package/bin/chat/types/FeishuInboundAttachment.js +9 -0
  512. package/bin/chat/types/FeishuInboundAttachment.js.map +1 -0
  513. package/bin/chat/types/FeishuPost.d.ts +287 -0
  514. package/bin/chat/types/FeishuPost.d.ts.map +1 -0
  515. package/bin/chat/types/FeishuPost.js +9 -0
  516. package/bin/chat/types/FeishuPost.js.map +1 -0
  517. package/bin/chat/types/QqInboundDedupe.d.ts +12 -0
  518. package/bin/chat/types/QqInboundDedupe.d.ts.map +1 -0
  519. package/bin/chat/types/QqInboundDedupe.js +2 -0
  520. package/bin/chat/types/QqInboundDedupe.js.map +1 -0
  521. package/bin/chat/types/QqVoice.d.ts +118 -0
  522. package/bin/chat/types/QqVoice.d.ts.map +1 -0
  523. package/bin/chat/types/QqVoice.js +9 -0
  524. package/bin/chat/types/QqVoice.js.map +1 -0
  525. package/bin/chat/types/ReplyContext.d.ts +46 -0
  526. package/bin/chat/types/ReplyContext.d.ts.map +1 -0
  527. package/bin/chat/types/ReplyContext.js +10 -0
  528. package/bin/chat/types/ReplyContext.js.map +1 -0
  529. package/bin/contact/Action.d.ts +62 -0
  530. package/bin/contact/Action.d.ts.map +1 -0
  531. package/bin/contact/Action.js +221 -0
  532. package/bin/contact/Action.js.map +1 -0
  533. package/bin/contact/ContactPlugin.d.ts +39 -0
  534. package/bin/contact/ContactPlugin.d.ts.map +1 -0
  535. package/bin/contact/ContactPlugin.js +407 -0
  536. package/bin/contact/ContactPlugin.js.map +1 -0
  537. package/bin/contact/Index.d.ts +8 -0
  538. package/bin/contact/Index.d.ts.map +1 -0
  539. package/bin/contact/Index.js +8 -0
  540. package/bin/contact/Index.js.map +1 -0
  541. package/bin/contact/PROMPT.d.ts +7 -0
  542. package/bin/contact/PROMPT.d.ts.map +1 -0
  543. package/bin/contact/PROMPT.js +8 -0
  544. package/bin/contact/PROMPT.js.map +1 -0
  545. package/bin/contact/runtime/ApproveCallback.d.ts +23 -0
  546. package/bin/contact/runtime/ApproveCallback.d.ts.map +1 -0
  547. package/bin/contact/runtime/ApproveCallback.js +83 -0
  548. package/bin/contact/runtime/ApproveCallback.js.map +1 -0
  549. package/bin/contact/runtime/ChatRuntime.d.ts +27 -0
  550. package/bin/contact/runtime/ChatRuntime.d.ts.map +1 -0
  551. package/bin/contact/runtime/ChatRuntime.js +60 -0
  552. package/bin/contact/runtime/ChatRuntime.js.map +1 -0
  553. package/bin/contact/runtime/ContactPayload.d.ts +17 -0
  554. package/bin/contact/runtime/ContactPayload.d.ts.map +1 -0
  555. package/bin/contact/runtime/ContactPayload.js +23 -0
  556. package/bin/contact/runtime/ContactPayload.js.map +1 -0
  557. package/bin/contact/runtime/ContactPromptAssets.d.ts +12 -0
  558. package/bin/contact/runtime/ContactPromptAssets.d.ts.map +1 -0
  559. package/bin/contact/runtime/ContactPromptAssets.js +13 -0
  560. package/bin/contact/runtime/ContactPromptAssets.js.map +1 -0
  561. package/bin/contact/runtime/ContactStore.d.ts +49 -0
  562. package/bin/contact/runtime/ContactStore.d.ts.map +1 -0
  563. package/bin/contact/runtime/ContactStore.js +255 -0
  564. package/bin/contact/runtime/ContactStore.js.map +1 -0
  565. package/bin/contact/runtime/EndpointNotice.d.ts +39 -0
  566. package/bin/contact/runtime/EndpointNotice.d.ts.map +1 -0
  567. package/bin/contact/runtime/EndpointNotice.js +98 -0
  568. package/bin/contact/runtime/EndpointNotice.js.map +1 -0
  569. package/bin/contact/runtime/EndpointResolver.d.ts +36 -0
  570. package/bin/contact/runtime/EndpointResolver.d.ts.map +1 -0
  571. package/bin/contact/runtime/EndpointResolver.js +113 -0
  572. package/bin/contact/runtime/EndpointResolver.js.map +1 -0
  573. package/bin/contact/runtime/InboxStore.d.ts +33 -0
  574. package/bin/contact/runtime/InboxStore.d.ts.map +1 -0
  575. package/bin/contact/runtime/InboxStore.js +142 -0
  576. package/bin/contact/runtime/InboxStore.js.map +1 -0
  577. package/bin/contact/runtime/LinkApproval.d.ts +20 -0
  578. package/bin/contact/runtime/LinkApproval.d.ts.map +1 -0
  579. package/bin/contact/runtime/LinkApproval.js +317 -0
  580. package/bin/contact/runtime/LinkApproval.js.map +1 -0
  581. package/bin/contact/runtime/LinkCode.d.ts +21 -0
  582. package/bin/contact/runtime/LinkCode.d.ts.map +1 -0
  583. package/bin/contact/runtime/LinkCode.js +61 -0
  584. package/bin/contact/runtime/LinkCode.js.map +1 -0
  585. package/bin/contact/runtime/LinkStore.d.ts +17 -0
  586. package/bin/contact/runtime/LinkStore.d.ts.map +1 -0
  587. package/bin/contact/runtime/LinkStore.js +39 -0
  588. package/bin/contact/runtime/LinkStore.js.map +1 -0
  589. package/bin/contact/runtime/Paths.d.ts +64 -0
  590. package/bin/contact/runtime/Paths.d.ts.map +1 -0
  591. package/bin/contact/runtime/Paths.js +103 -0
  592. package/bin/contact/runtime/Paths.js.map +1 -0
  593. package/bin/contact/runtime/RemoteClient.d.ts +46 -0
  594. package/bin/contact/runtime/RemoteClient.d.ts.map +1 -0
  595. package/bin/contact/runtime/RemoteClient.js +120 -0
  596. package/bin/contact/runtime/RemoteClient.js.map +1 -0
  597. package/bin/contact/runtime/ShareBundle.d.ts +65 -0
  598. package/bin/contact/runtime/ShareBundle.d.ts.map +1 -0
  599. package/bin/contact/runtime/ShareBundle.js +185 -0
  600. package/bin/contact/runtime/ShareBundle.js.map +1 -0
  601. package/bin/contact/runtime/SystemProvider.d.ts +5 -0
  602. package/bin/contact/runtime/SystemProvider.d.ts.map +1 -0
  603. package/bin/contact/runtime/SystemProvider.js +15 -0
  604. package/bin/contact/runtime/SystemProvider.js.map +1 -0
  605. package/bin/contact/runtime/Token.d.ts +24 -0
  606. package/bin/contact/runtime/Token.d.ts.map +1 -0
  607. package/bin/contact/runtime/Token.js +36 -0
  608. package/bin/contact/runtime/Token.js.map +1 -0
  609. package/bin/contact/types/Contact.d.ts +78 -0
  610. package/bin/contact/types/Contact.d.ts.map +1 -0
  611. package/bin/contact/types/Contact.js +9 -0
  612. package/bin/contact/types/Contact.js.map +1 -0
  613. package/bin/contact/types/ContactApproval.d.ts +145 -0
  614. package/bin/contact/types/ContactApproval.d.ts.map +1 -0
  615. package/bin/contact/types/ContactApproval.js +9 -0
  616. package/bin/contact/types/ContactApproval.js.map +1 -0
  617. package/bin/contact/types/ContactChat.d.ts +46 -0
  618. package/bin/contact/types/ContactChat.d.ts.map +1 -0
  619. package/bin/contact/types/ContactChat.js +9 -0
  620. package/bin/contact/types/ContactChat.js.map +1 -0
  621. package/bin/contact/types/ContactCheck.d.ts +66 -0
  622. package/bin/contact/types/ContactCheck.d.ts.map +1 -0
  623. package/bin/contact/types/ContactCheck.js +9 -0
  624. package/bin/contact/types/ContactCheck.js.map +1 -0
  625. package/bin/contact/types/ContactCommand.d.ts +93 -0
  626. package/bin/contact/types/ContactCommand.d.ts.map +1 -0
  627. package/bin/contact/types/ContactCommand.js +8 -0
  628. package/bin/contact/types/ContactCommand.js.map +1 -0
  629. package/bin/contact/types/ContactEndpoint.d.ts +12 -0
  630. package/bin/contact/types/ContactEndpoint.d.ts.map +1 -0
  631. package/bin/contact/types/ContactEndpoint.js +9 -0
  632. package/bin/contact/types/ContactEndpoint.js.map +1 -0
  633. package/bin/contact/types/ContactLink.d.ts +160 -0
  634. package/bin/contact/types/ContactLink.d.ts.map +1 -0
  635. package/bin/contact/types/ContactLink.js +9 -0
  636. package/bin/contact/types/ContactLink.js.map +1 -0
  637. package/bin/contact/types/ContactShare.d.ts +163 -0
  638. package/bin/contact/types/ContactShare.d.ts.map +1 -0
  639. package/bin/contact/types/ContactShare.js +9 -0
  640. package/bin/contact/types/ContactShare.js.map +1 -0
  641. package/bin/index.d.ts +25 -0
  642. package/bin/index.d.ts.map +1 -0
  643. package/bin/index.js +21 -0
  644. package/bin/index.js.map +1 -0
  645. package/bin/memory/Action.d.ts +37 -0
  646. package/bin/memory/Action.d.ts.map +1 -0
  647. package/bin/memory/Action.js +111 -0
  648. package/bin/memory/Action.js.map +1 -0
  649. package/bin/memory/Index.d.ts +9 -0
  650. package/bin/memory/Index.d.ts.map +1 -0
  651. package/bin/memory/Index.js +9 -0
  652. package/bin/memory/Index.js.map +1 -0
  653. package/bin/memory/MemoryPlugin.d.ts +45 -0
  654. package/bin/memory/MemoryPlugin.d.ts.map +1 -0
  655. package/bin/memory/MemoryPlugin.js +242 -0
  656. package/bin/memory/MemoryPlugin.js.map +1 -0
  657. package/bin/memory/runtime/Flush.d.ts +15 -0
  658. package/bin/memory/runtime/Flush.d.ts.map +1 -0
  659. package/bin/memory/runtime/Flush.js +63 -0
  660. package/bin/memory/runtime/Flush.js.map +1 -0
  661. package/bin/memory/runtime/Search.d.ts +19 -0
  662. package/bin/memory/runtime/Search.d.ts.map +1 -0
  663. package/bin/memory/runtime/Search.js +268 -0
  664. package/bin/memory/runtime/Search.js.map +1 -0
  665. package/bin/memory/runtime/Store.d.ts +65 -0
  666. package/bin/memory/runtime/Store.d.ts.map +1 -0
  667. package/bin/memory/runtime/Store.js +142 -0
  668. package/bin/memory/runtime/Store.js.map +1 -0
  669. package/bin/memory/runtime/SystemProvider.d.ts +22 -0
  670. package/bin/memory/runtime/SystemProvider.d.ts.map +1 -0
  671. package/bin/memory/runtime/SystemProvider.js +126 -0
  672. package/bin/memory/runtime/SystemProvider.js.map +1 -0
  673. package/bin/memory/runtime/Writer.d.ts +23 -0
  674. package/bin/memory/runtime/Writer.d.ts.map +1 -0
  675. package/bin/memory/runtime/Writer.js +139 -0
  676. package/bin/memory/runtime/Writer.js.map +1 -0
  677. package/bin/memory/types/Memory.d.ts +264 -0
  678. package/bin/memory/types/Memory.d.ts.map +1 -0
  679. package/bin/memory/types/Memory.js +9 -0
  680. package/bin/memory/types/Memory.js.map +1 -0
  681. package/bin/shell/Index.d.ts +9 -0
  682. package/bin/shell/Index.d.ts.map +1 -0
  683. package/bin/shell/Index.js +9 -0
  684. package/bin/shell/Index.js.map +1 -0
  685. package/bin/shell/ShellPlugin.d.ts +65 -0
  686. package/bin/shell/ShellPlugin.d.ts.map +1 -0
  687. package/bin/shell/ShellPlugin.js +138 -0
  688. package/bin/shell/ShellPlugin.js.map +1 -0
  689. package/bin/shell/ShellRuntimeTypes.d.ts +91 -0
  690. package/bin/shell/ShellRuntimeTypes.d.ts.map +1 -0
  691. package/bin/shell/ShellRuntimeTypes.js +10 -0
  692. package/bin/shell/ShellRuntimeTypes.js.map +1 -0
  693. package/bin/shell/runtime/Paths.d.ts +12 -0
  694. package/bin/shell/runtime/Paths.d.ts.map +1 -0
  695. package/bin/shell/runtime/Paths.js +21 -0
  696. package/bin/shell/runtime/Paths.js.map +1 -0
  697. package/bin/shell/runtime/ShellActionResponse.d.ts +52 -0
  698. package/bin/shell/runtime/ShellActionResponse.d.ts.map +1 -0
  699. package/bin/shell/runtime/ShellActionResponse.js +73 -0
  700. package/bin/shell/runtime/ShellActionResponse.js.map +1 -0
  701. package/bin/shell/runtime/ShellActionRuntime.d.ts +49 -0
  702. package/bin/shell/runtime/ShellActionRuntime.d.ts.map +1 -0
  703. package/bin/shell/runtime/ShellActionRuntime.js +441 -0
  704. package/bin/shell/runtime/ShellActionRuntime.js.map +1 -0
  705. package/bin/shell/runtime/ShellActionRuntimeSupport.d.ts +79 -0
  706. package/bin/shell/runtime/ShellActionRuntimeSupport.d.ts.map +1 -0
  707. package/bin/shell/runtime/ShellActionRuntimeSupport.js +314 -0
  708. package/bin/shell/runtime/ShellActionRuntimeSupport.js.map +1 -0
  709. package/bin/shell/runtime/ShellProcessEvents.d.ts +22 -0
  710. package/bin/shell/runtime/ShellProcessEvents.d.ts.map +1 -0
  711. package/bin/shell/runtime/ShellProcessEvents.js +41 -0
  712. package/bin/shell/runtime/ShellProcessEvents.js.map +1 -0
  713. package/bin/shell/runtime/ShellRuntimeEnvironment.d.ts +21 -0
  714. package/bin/shell/runtime/ShellRuntimeEnvironment.d.ts.map +1 -0
  715. package/bin/shell/runtime/ShellRuntimeEnvironment.js +67 -0
  716. package/bin/shell/runtime/ShellRuntimeEnvironment.js.map +1 -0
  717. package/bin/skill/Action.d.ts +34 -0
  718. package/bin/skill/Action.d.ts.map +1 -0
  719. package/bin/skill/Action.js +122 -0
  720. package/bin/skill/Action.js.map +1 -0
  721. package/bin/skill/Command.d.ts +37 -0
  722. package/bin/skill/Command.d.ts.map +1 -0
  723. package/bin/skill/Command.js +70 -0
  724. package/bin/skill/Command.js.map +1 -0
  725. package/bin/skill/Config.d.ts +18 -0
  726. package/bin/skill/Config.d.ts.map +1 -0
  727. package/bin/skill/Config.js +37 -0
  728. package/bin/skill/Config.js.map +1 -0
  729. package/bin/skill/PROMPT.d.ts +7 -0
  730. package/bin/skill/PROMPT.d.ts.map +1 -0
  731. package/bin/skill/PROMPT.js +8 -0
  732. package/bin/skill/PROMPT.js.map +1 -0
  733. package/bin/skill/Plugin.d.ts +18 -0
  734. package/bin/skill/Plugin.d.ts.map +1 -0
  735. package/bin/skill/Plugin.js +311 -0
  736. package/bin/skill/Plugin.js.map +1 -0
  737. package/bin/skill/SkillPromptAssets.d.ts +12 -0
  738. package/bin/skill/SkillPromptAssets.d.ts.map +1 -0
  739. package/bin/skill/SkillPromptAssets.js +13 -0
  740. package/bin/skill/SkillPromptAssets.js.map +1 -0
  741. package/bin/skill/runtime/Discovery.d.ts +25 -0
  742. package/bin/skill/runtime/Discovery.d.ts.map +1 -0
  743. package/bin/skill/runtime/Discovery.js +130 -0
  744. package/bin/skill/runtime/Discovery.js.map +1 -0
  745. package/bin/skill/runtime/Frontmatter.d.ts +6 -0
  746. package/bin/skill/runtime/Frontmatter.d.ts.map +1 -0
  747. package/bin/skill/runtime/Frontmatter.js +12 -0
  748. package/bin/skill/runtime/Frontmatter.js.map +1 -0
  749. package/bin/skill/runtime/Paths.d.ts +16 -0
  750. package/bin/skill/runtime/Paths.d.ts.map +1 -0
  751. package/bin/skill/runtime/Paths.js +111 -0
  752. package/bin/skill/runtime/Paths.js.map +1 -0
  753. package/bin/skill/runtime/Prompt.d.ts +19 -0
  754. package/bin/skill/runtime/Prompt.d.ts.map +1 -0
  755. package/bin/skill/runtime/Prompt.js +54 -0
  756. package/bin/skill/runtime/Prompt.js.map +1 -0
  757. package/bin/skill/runtime/Store.d.ts +25 -0
  758. package/bin/skill/runtime/Store.d.ts.map +1 -0
  759. package/bin/skill/runtime/Store.js +81 -0
  760. package/bin/skill/runtime/Store.js.map +1 -0
  761. package/bin/skill/runtime/SystemProvider.d.ts +24 -0
  762. package/bin/skill/runtime/SystemProvider.d.ts.map +1 -0
  763. package/bin/skill/runtime/SystemProvider.js +33 -0
  764. package/bin/skill/runtime/SystemProvider.js.map +1 -0
  765. package/bin/skill/runtime/Types.d.ts +21 -0
  766. package/bin/skill/runtime/Types.d.ts.map +1 -0
  767. package/bin/skill/runtime/Types.js +2 -0
  768. package/bin/skill/runtime/Types.js.map +1 -0
  769. package/bin/skill/runtime/Utils.d.ts +4 -0
  770. package/bin/skill/runtime/Utils.d.ts.map +1 -0
  771. package/bin/skill/runtime/Utils.js +29 -0
  772. package/bin/skill/runtime/Utils.js.map +1 -0
  773. package/bin/skill/types/ClaudeSkill.d.ts +63 -0
  774. package/bin/skill/types/ClaudeSkill.d.ts.map +1 -0
  775. package/bin/skill/types/ClaudeSkill.js +10 -0
  776. package/bin/skill/types/ClaudeSkill.js.map +1 -0
  777. package/bin/skill/types/SkillCommand.d.ts +87 -0
  778. package/bin/skill/types/SkillCommand.d.ts.map +1 -0
  779. package/bin/skill/types/SkillCommand.js +9 -0
  780. package/bin/skill/types/SkillCommand.js.map +1 -0
  781. package/bin/skill/types/SkillPlugin.d.ts +102 -0
  782. package/bin/skill/types/SkillPlugin.d.ts.map +1 -0
  783. package/bin/skill/types/SkillPlugin.js +29 -0
  784. package/bin/skill/types/SkillPlugin.js.map +1 -0
  785. package/bin/skill/types/SkillRoot.d.ts +48 -0
  786. package/bin/skill/types/SkillRoot.d.ts.map +1 -0
  787. package/bin/skill/types/SkillRoot.js +9 -0
  788. package/bin/skill/types/SkillRoot.js.map +1 -0
  789. package/bin/task/Action.d.ts +36 -0
  790. package/bin/task/Action.d.ts.map +1 -0
  791. package/bin/task/Action.js +407 -0
  792. package/bin/task/Action.js.map +1 -0
  793. package/bin/task/Index.d.ts +9 -0
  794. package/bin/task/Index.d.ts.map +1 -0
  795. package/bin/task/Index.js +9 -0
  796. package/bin/task/Index.js.map +1 -0
  797. package/bin/task/PROMPT.d.ts +7 -0
  798. package/bin/task/PROMPT.d.ts.map +1 -0
  799. package/bin/task/PROMPT.js +8 -0
  800. package/bin/task/PROMPT.js.map +1 -0
  801. package/bin/task/Scheduler.d.ts +17 -0
  802. package/bin/task/Scheduler.d.ts.map +1 -0
  803. package/bin/task/Scheduler.js +231 -0
  804. package/bin/task/Scheduler.js.map +1 -0
  805. package/bin/task/TaskPlugin.d.ts +57 -0
  806. package/bin/task/TaskPlugin.d.ts.map +1 -0
  807. package/bin/task/TaskPlugin.js +126 -0
  808. package/bin/task/TaskPlugin.js.map +1 -0
  809. package/bin/task/runtime/CronTrigger.d.ts +19 -0
  810. package/bin/task/runtime/CronTrigger.d.ts.map +1 -0
  811. package/bin/task/runtime/CronTrigger.js +93 -0
  812. package/bin/task/runtime/CronTrigger.js.map +1 -0
  813. package/bin/task/runtime/Frontmatter.d.ts +13 -0
  814. package/bin/task/runtime/Frontmatter.d.ts.map +1 -0
  815. package/bin/task/runtime/Frontmatter.js +19 -0
  816. package/bin/task/runtime/Frontmatter.js.map +1 -0
  817. package/bin/task/runtime/Model.d.ts +73 -0
  818. package/bin/task/runtime/Model.d.ts.map +1 -0
  819. package/bin/task/runtime/Model.js +312 -0
  820. package/bin/task/runtime/Model.js.map +1 -0
  821. package/bin/task/runtime/Paths.d.ts +32 -0
  822. package/bin/task/runtime/Paths.d.ts.map +1 -0
  823. package/bin/task/runtime/Paths.js +103 -0
  824. package/bin/task/runtime/Paths.js.map +1 -0
  825. package/bin/task/runtime/Runner.d.ts +43 -0
  826. package/bin/task/runtime/Runner.d.ts.map +1 -0
  827. package/bin/task/runtime/Runner.js +440 -0
  828. package/bin/task/runtime/Runner.js.map +1 -0
  829. package/bin/task/runtime/Store.d.ts +89 -0
  830. package/bin/task/runtime/Store.d.ts.map +1 -0
  831. package/bin/task/runtime/Store.js +206 -0
  832. package/bin/task/runtime/Store.js.map +1 -0
  833. package/bin/task/runtime/TaskActionExecution.d.ts +160 -0
  834. package/bin/task/runtime/TaskActionExecution.d.ts.map +1 -0
  835. package/bin/task/runtime/TaskActionExecution.js +192 -0
  836. package/bin/task/runtime/TaskActionExecution.js.map +1 -0
  837. package/bin/task/runtime/TaskActionInput.d.ts +19 -0
  838. package/bin/task/runtime/TaskActionInput.d.ts.map +1 -0
  839. package/bin/task/runtime/TaskActionInput.js +218 -0
  840. package/bin/task/runtime/TaskActionInput.js.map +1 -0
  841. package/bin/task/runtime/TaskPluginActionRegistry.d.ts +16 -0
  842. package/bin/task/runtime/TaskPluginActionRegistry.d.ts.map +1 -0
  843. package/bin/task/runtime/TaskPluginActionRegistry.js +167 -0
  844. package/bin/task/runtime/TaskPluginActionRegistry.js.map +1 -0
  845. package/bin/task/runtime/TaskPluginActions.d.ts +5 -0
  846. package/bin/task/runtime/TaskPluginActions.d.ts.map +1 -0
  847. package/bin/task/runtime/TaskPluginActions.js +5 -0
  848. package/bin/task/runtime/TaskPluginActions.js.map +1 -0
  849. package/bin/task/runtime/TaskPluginSystem.d.ts +9 -0
  850. package/bin/task/runtime/TaskPluginSystem.d.ts.map +1 -0
  851. package/bin/task/runtime/TaskPluginSystem.js +9 -0
  852. package/bin/task/runtime/TaskPluginSystem.js.map +1 -0
  853. package/bin/task/runtime/TaskPromptAssets.d.ts +12 -0
  854. package/bin/task/runtime/TaskPromptAssets.d.ts.map +1 -0
  855. package/bin/task/runtime/TaskPromptAssets.js +13 -0
  856. package/bin/task/runtime/TaskPromptAssets.js.map +1 -0
  857. package/bin/task/runtime/TaskRunArtifacts.d.ts +189 -0
  858. package/bin/task/runtime/TaskRunArtifacts.d.ts.map +1 -0
  859. package/bin/task/runtime/TaskRunArtifacts.js +271 -0
  860. package/bin/task/runtime/TaskRunArtifacts.js.map +1 -0
  861. package/bin/task/runtime/TaskRunChatDispatch.d.ts +22 -0
  862. package/bin/task/runtime/TaskRunChatDispatch.d.ts.map +1 -0
  863. package/bin/task/runtime/TaskRunChatDispatch.js +66 -0
  864. package/bin/task/runtime/TaskRunChatDispatch.js.map +1 -0
  865. package/bin/task/runtime/TaskRunnerProgress.d.ts +35 -0
  866. package/bin/task/runtime/TaskRunnerProgress.d.ts.map +1 -0
  867. package/bin/task/runtime/TaskRunnerProgress.js +95 -0
  868. package/bin/task/runtime/TaskRunnerProgress.js.map +1 -0
  869. package/bin/task/runtime/TaskRunnerRound.d.ts +80 -0
  870. package/bin/task/runtime/TaskRunnerRound.d.ts.map +1 -0
  871. package/bin/task/runtime/TaskRunnerRound.js +272 -0
  872. package/bin/task/runtime/TaskRunnerRound.js.map +1 -0
  873. package/bin/task/runtime/TaskRunnerScript.d.ts +81 -0
  874. package/bin/task/runtime/TaskRunnerScript.d.ts.map +1 -0
  875. package/bin/task/runtime/TaskRunnerScript.js +96 -0
  876. package/bin/task/runtime/TaskRunnerScript.js.map +1 -0
  877. package/bin/task/runtime/TaskRunnerSession.d.ts +48 -0
  878. package/bin/task/runtime/TaskRunnerSession.d.ts.map +1 -0
  879. package/bin/task/runtime/TaskRunnerSession.js +153 -0
  880. package/bin/task/runtime/TaskRunnerSession.js.map +1 -0
  881. package/bin/task/runtime/TaskRunnerTypes.d.ts +186 -0
  882. package/bin/task/runtime/TaskRunnerTypes.d.ts.map +1 -0
  883. package/bin/task/runtime/TaskRunnerTypes.js +9 -0
  884. package/bin/task/runtime/TaskRunnerTypes.js.map +1 -0
  885. package/bin/task/types/Cron.d.ts +16 -0
  886. package/bin/task/types/Cron.d.ts.map +1 -0
  887. package/bin/task/types/Cron.js +2 -0
  888. package/bin/task/types/Cron.js.map +1 -0
  889. package/bin/task/types/Task.d.ts +146 -0
  890. package/bin/task/types/Task.d.ts.map +1 -0
  891. package/bin/task/types/Task.js +9 -0
  892. package/bin/task/types/Task.js.map +1 -0
  893. package/bin/task/types/TaskCommand.d.ts +147 -0
  894. package/bin/task/types/TaskCommand.d.ts.map +1 -0
  895. package/bin/task/types/TaskCommand.js +9 -0
  896. package/bin/task/types/TaskCommand.js.map +1 -0
  897. package/bin/task/types/TaskPluginTypes.d.ts +52 -0
  898. package/bin/task/types/TaskPluginTypes.d.ts.map +1 -0
  899. package/bin/task/types/TaskPluginTypes.js +9 -0
  900. package/bin/task/types/TaskPluginTypes.js.map +1 -0
  901. package/bin/tts/Dependency.d.ts +90 -0
  902. package/bin/tts/Dependency.d.ts.map +1 -0
  903. package/bin/tts/Dependency.js +344 -0
  904. package/bin/tts/Dependency.js.map +1 -0
  905. package/bin/tts/Plugin.d.ts +17 -0
  906. package/bin/tts/Plugin.d.ts.map +1 -0
  907. package/bin/tts/Plugin.js +491 -0
  908. package/bin/tts/Plugin.js.map +1 -0
  909. package/bin/tts/PluginSupport.d.ts +25 -0
  910. package/bin/tts/PluginSupport.d.ts.map +1 -0
  911. package/bin/tts/PluginSupport.js +72 -0
  912. package/bin/tts/PluginSupport.js.map +1 -0
  913. package/bin/tts/runtime/Catalog.d.ts +21 -0
  914. package/bin/tts/runtime/Catalog.d.ts.map +1 -0
  915. package/bin/tts/runtime/Catalog.js +90 -0
  916. package/bin/tts/runtime/Catalog.js.map +1 -0
  917. package/bin/tts/runtime/DependencyInstaller.d.ts +143 -0
  918. package/bin/tts/runtime/DependencyInstaller.d.ts.map +1 -0
  919. package/bin/tts/runtime/DependencyInstaller.js +261 -0
  920. package/bin/tts/runtime/DependencyInstaller.js.map +1 -0
  921. package/bin/tts/runtime/Installer.d.ts +89 -0
  922. package/bin/tts/runtime/Installer.d.ts.map +1 -0
  923. package/bin/tts/runtime/Installer.js +188 -0
  924. package/bin/tts/runtime/Installer.js.map +1 -0
  925. package/bin/tts/runtime/Paths.d.ts +20 -0
  926. package/bin/tts/runtime/Paths.d.ts.map +1 -0
  927. package/bin/tts/runtime/Paths.js +32 -0
  928. package/bin/tts/runtime/Paths.js.map +1 -0
  929. package/bin/tts/runtime/Synthesizer.d.ts +44 -0
  930. package/bin/tts/runtime/Synthesizer.d.ts.map +1 -0
  931. package/bin/tts/runtime/Synthesizer.js +363 -0
  932. package/bin/tts/runtime/Synthesizer.js.map +1 -0
  933. package/bin/tts/types/Tts.d.ts +91 -0
  934. package/bin/tts/types/Tts.d.ts.map +1 -0
  935. package/bin/tts/types/Tts.js +9 -0
  936. package/bin/tts/types/Tts.js.map +1 -0
  937. package/bin/tts/types/TtsPlugin.d.ts +161 -0
  938. package/bin/tts/types/TtsPlugin.d.ts.map +1 -0
  939. package/bin/tts/types/TtsPlugin.js +9 -0
  940. package/bin/tts/types/TtsPlugin.js.map +1 -0
  941. package/bin/voice/Config.d.ts +43 -0
  942. package/bin/voice/Config.d.ts.map +1 -0
  943. package/bin/voice/Config.js +104 -0
  944. package/bin/voice/Config.js.map +1 -0
  945. package/bin/voice/Dependency.d.ts +77 -0
  946. package/bin/voice/Dependency.d.ts.map +1 -0
  947. package/bin/voice/Dependency.js +237 -0
  948. package/bin/voice/Dependency.js.map +1 -0
  949. package/bin/voice/InboundAugment.d.ts +17 -0
  950. package/bin/voice/InboundAugment.d.ts.map +1 -0
  951. package/bin/voice/InboundAugment.js +47 -0
  952. package/bin/voice/InboundAugment.js.map +1 -0
  953. package/bin/voice/ModelCatalog.d.ts +29 -0
  954. package/bin/voice/ModelCatalog.d.ts.map +1 -0
  955. package/bin/voice/ModelCatalog.js +25 -0
  956. package/bin/voice/ModelCatalog.js.map +1 -0
  957. package/bin/voice/runtime/Catalog.d.ts +18 -0
  958. package/bin/voice/runtime/Catalog.d.ts.map +1 -0
  959. package/bin/voice/runtime/Catalog.js +61 -0
  960. package/bin/voice/runtime/Catalog.js.map +1 -0
  961. package/bin/voice/runtime/DependencyInstaller.d.ts +145 -0
  962. package/bin/voice/runtime/DependencyInstaller.d.ts.map +1 -0
  963. package/bin/voice/runtime/DependencyInstaller.js +309 -0
  964. package/bin/voice/runtime/DependencyInstaller.js.map +1 -0
  965. package/bin/voice/runtime/Installer.d.ts +94 -0
  966. package/bin/voice/runtime/Installer.d.ts.map +1 -0
  967. package/bin/voice/runtime/Installer.js +200 -0
  968. package/bin/voice/runtime/Installer.js.map +1 -0
  969. package/bin/voice/runtime/Paths.d.ts +8 -0
  970. package/bin/voice/runtime/Paths.d.ts.map +1 -0
  971. package/bin/voice/runtime/Paths.js +26 -0
  972. package/bin/voice/runtime/Paths.js.map +1 -0
  973. package/bin/voice/runtime/Transcriber.d.ts +57 -0
  974. package/bin/voice/runtime/Transcriber.d.ts.map +1 -0
  975. package/bin/voice/runtime/Transcriber.js +329 -0
  976. package/bin/voice/runtime/Transcriber.js.map +1 -0
  977. package/bin/voice/types/Voice.d.ts +58 -0
  978. package/bin/voice/types/Voice.d.ts.map +1 -0
  979. package/bin/voice/types/Voice.js +9 -0
  980. package/bin/voice/types/Voice.js.map +1 -0
  981. package/bin/voice/types/VoicePlugin.d.ts +190 -0
  982. package/bin/voice/types/VoicePlugin.d.ts.map +1 -0
  983. package/bin/voice/types/VoicePlugin.js +9 -0
  984. package/bin/voice/types/VoicePlugin.js.map +1 -0
  985. package/bin/web/Dependency.d.ts +10 -0
  986. package/bin/web/Dependency.d.ts.map +1 -0
  987. package/bin/web/Dependency.js +10 -0
  988. package/bin/web/Dependency.js.map +1 -0
  989. package/bin/web/PROMPT.agent-browser.d.ts +7 -0
  990. package/bin/web/PROMPT.agent-browser.d.ts.map +1 -0
  991. package/bin/web/PROMPT.agent-browser.js +8 -0
  992. package/bin/web/PROMPT.agent-browser.js.map +1 -0
  993. package/bin/web/PROMPT.d.ts +7 -0
  994. package/bin/web/PROMPT.d.ts.map +1 -0
  995. package/bin/web/PROMPT.js +8 -0
  996. package/bin/web/PROMPT.js.map +1 -0
  997. package/bin/web/PROMPT.web-access.d.ts +7 -0
  998. package/bin/web/PROMPT.web-access.d.ts.map +1 -0
  999. package/bin/web/PROMPT.web-access.js +8 -0
  1000. package/bin/web/PROMPT.web-access.js.map +1 -0
  1001. package/bin/web/Plugin.d.ts +17 -0
  1002. package/bin/web/Plugin.d.ts.map +1 -0
  1003. package/bin/web/Plugin.js +478 -0
  1004. package/bin/web/Plugin.js.map +1 -0
  1005. package/bin/web/WebPromptAssets.d.ts +20 -0
  1006. package/bin/web/WebPromptAssets.d.ts.map +1 -0
  1007. package/bin/web/WebPromptAssets.js +23 -0
  1008. package/bin/web/WebPromptAssets.js.map +1 -0
  1009. package/bin/web/runtime/Config.d.ts +21 -0
  1010. package/bin/web/runtime/Config.d.ts.map +1 -0
  1011. package/bin/web/runtime/Config.js +79 -0
  1012. package/bin/web/runtime/Config.js.map +1 -0
  1013. package/bin/web/runtime/Source.d.ts +29 -0
  1014. package/bin/web/runtime/Source.d.ts.map +1 -0
  1015. package/bin/web/runtime/Source.js +209 -0
  1016. package/bin/web/runtime/Source.js.map +1 -0
  1017. package/bin/web/types/WebPlugin.d.ts +133 -0
  1018. package/bin/web/types/WebPlugin.d.ts.map +1 -0
  1019. package/bin/web/types/WebPlugin.js +12 -0
  1020. package/bin/web/types/WebPlugin.js.map +1 -0
  1021. package/bin/workboard/Plugin.d.ts +17 -0
  1022. package/bin/workboard/Plugin.d.ts.map +1 -0
  1023. package/bin/workboard/Plugin.js +81 -0
  1024. package/bin/workboard/Plugin.js.map +1 -0
  1025. package/bin/workboard/runtime/Collector.d.ts +14 -0
  1026. package/bin/workboard/runtime/Collector.d.ts.map +1 -0
  1027. package/bin/workboard/runtime/Collector.js +63 -0
  1028. package/bin/workboard/runtime/Collector.js.map +1 -0
  1029. package/bin/workboard/runtime/Normalizer.d.ts +61 -0
  1030. package/bin/workboard/runtime/Normalizer.d.ts.map +1 -0
  1031. package/bin/workboard/runtime/Normalizer.js +172 -0
  1032. package/bin/workboard/runtime/Normalizer.js.map +1 -0
  1033. package/bin/workboard/runtime/Store.d.ts +48 -0
  1034. package/bin/workboard/runtime/Store.d.ts.map +1 -0
  1035. package/bin/workboard/runtime/Store.js +84 -0
  1036. package/bin/workboard/runtime/Store.js.map +1 -0
  1037. package/bin/workboard/types/Workboard.d.ts +150 -0
  1038. package/bin/workboard/types/Workboard.d.ts.map +1 -0
  1039. package/bin/workboard/types/Workboard.js +9 -0
  1040. package/bin/workboard/types/Workboard.js.map +1 -0
  1041. package/package.json +42 -0
  1042. package/src/BuiltinPlugins.ts +53 -0
  1043. package/src/asr/Config.ts +138 -0
  1044. package/src/asr/Dependency.ts +336 -0
  1045. package/src/asr/InboundAugment.ts +59 -0
  1046. package/src/asr/ModelCatalog.ts +43 -0
  1047. package/src/asr/Plugin.ts +510 -0
  1048. package/src/auth/Plugin.ts +221 -0
  1049. package/src/auth/runtime/AuthorizationConfig.ts +247 -0
  1050. package/src/auth/runtime/AuthorizationPolicy.ts +167 -0
  1051. package/src/auth/runtime/AuthorizationStore.ts +220 -0
  1052. package/src/auth/types/AuthPlugin.ts +545 -0
  1053. package/src/chat/Action.ts +477 -0
  1054. package/src/chat/ChatPlugin.ts +249 -0
  1055. package/src/chat/ChatPluginTypes.ts +126 -0
  1056. package/src/chat/Index.ts +8 -0
  1057. package/src/chat/PROMPT.direct.ts +9 -0
  1058. package/src/chat/PROMPT.direct.ts.txt +55 -0
  1059. package/src/chat/accounts/ChannelAccountManager.ts +314 -0
  1060. package/src/chat/accounts/Crypto.ts +83 -0
  1061. package/src/chat/accounts/Store.ts +287 -0
  1062. package/src/chat/channels/BaseChatChannel.ts +450 -0
  1063. package/src/chat/channels/BaseChatChannelQueue.ts +320 -0
  1064. package/src/chat/channels/BaseChatChannelSupport.ts +321 -0
  1065. package/src/chat/channels/BotInfoProvider.ts +49 -0
  1066. package/src/chat/channels/Configuration.ts +35 -0
  1067. package/src/chat/channels/ConfigurationRegistry.ts +43 -0
  1068. package/src/chat/channels/feishu/BotInfo.ts +199 -0
  1069. package/src/chat/channels/feishu/Configuration.ts +65 -0
  1070. package/src/chat/channels/feishu/Feishu.ts +467 -0
  1071. package/src/chat/channels/feishu/FeishuInbound.ts +51 -0
  1072. package/src/chat/channels/feishu/FeishuMessageHandler.ts +483 -0
  1073. package/src/chat/channels/feishu/FeishuPlatformClient.ts +421 -0
  1074. package/src/chat/channels/feishu/FeishuPlatformLookup.ts +523 -0
  1075. package/src/chat/channels/feishu/FeishuPlatformMessaging.ts +219 -0
  1076. package/src/chat/channels/feishu/InboundAttachment.ts +261 -0
  1077. package/src/chat/channels/feishu/PROMPT.direct.ts +9 -0
  1078. package/src/chat/channels/feishu/PROMPT.direct.ts.txt +5 -0
  1079. package/src/chat/channels/feishu/PostMessage.ts +492 -0
  1080. package/src/chat/channels/feishu/ReplyContext.ts +68 -0
  1081. package/src/chat/channels/feishu/Shared.ts +94 -0
  1082. package/src/chat/channels/feishu/types/FeishuChannel.ts +131 -0
  1083. package/src/chat/channels/qq/BotInfo.ts +137 -0
  1084. package/src/chat/channels/qq/Configuration.ts +64 -0
  1085. package/src/chat/channels/qq/PROMPT.direct.ts +9 -0
  1086. package/src/chat/channels/qq/PROMPT.direct.ts.txt +11 -0
  1087. package/src/chat/channels/qq/QQ.ts +398 -0
  1088. package/src/chat/channels/qq/QQEventCapture.ts +88 -0
  1089. package/src/chat/channels/qq/QQGatewayAuth.ts +318 -0
  1090. package/src/chat/channels/qq/QQGatewayClient.ts +467 -0
  1091. package/src/chat/channels/qq/QQGatewayConnection.ts +175 -0
  1092. package/src/chat/channels/qq/QQGatewayHeartbeat.ts +114 -0
  1093. package/src/chat/channels/qq/QQGatewayProtocol.ts +176 -0
  1094. package/src/chat/channels/qq/QQGatewaySend.ts +258 -0
  1095. package/src/chat/channels/qq/QQGatewaySupport.ts +159 -0
  1096. package/src/chat/channels/qq/QQInbound.ts +262 -0
  1097. package/src/chat/channels/qq/QQInboundDedupe.ts +126 -0
  1098. package/src/chat/channels/qq/QQMessageHandler.ts +465 -0
  1099. package/src/chat/channels/qq/QQSendSupport.ts +91 -0
  1100. package/src/chat/channels/qq/QQSupport.ts +263 -0
  1101. package/src/chat/channels/qq/VoiceInput.ts +381 -0
  1102. package/src/chat/channels/qq/types/QqChannel.ts +501 -0
  1103. package/src/chat/channels/qq/types/QqGatewaySupport.ts +97 -0
  1104. package/src/chat/channels/telegram/ApiClient.ts +373 -0
  1105. package/src/chat/channels/telegram/Bot.ts +357 -0
  1106. package/src/chat/channels/telegram/BotInfo.ts +92 -0
  1107. package/src/chat/channels/telegram/Configuration.ts +65 -0
  1108. package/src/chat/channels/telegram/Handlers.ts +91 -0
  1109. package/src/chat/channels/telegram/PROMPT.direct.ts +9 -0
  1110. package/src/chat/channels/telegram/PROMPT.direct.ts.txt +2 -0
  1111. package/src/chat/channels/telegram/ReplyContext.ts +76 -0
  1112. package/src/chat/channels/telegram/Shared.ts +404 -0
  1113. package/src/chat/channels/telegram/StateStore.ts +58 -0
  1114. package/src/chat/channels/telegram/TelegramInbound.ts +186 -0
  1115. package/src/chat/channels/telegram/TelegramMessageHandler.ts +485 -0
  1116. package/src/chat/channels/telegram/TelegramPendingUpdates.ts +204 -0
  1117. package/src/chat/channels/telegram/TelegramPlatformClient.ts +482 -0
  1118. package/src/chat/runtime/ChannelContextStore.ts +395 -0
  1119. package/src/chat/runtime/ChatActionExecution.ts +362 -0
  1120. package/src/chat/runtime/ChatActionInput.ts +167 -0
  1121. package/src/chat/runtime/ChatActionInputSupport.ts +85 -0
  1122. package/src/chat/runtime/ChatChannelActions.ts +308 -0
  1123. package/src/chat/runtime/ChatChannelConfig.ts +330 -0
  1124. package/src/chat/runtime/ChatChannelCore.ts +148 -0
  1125. package/src/chat/runtime/ChatChannelFacade.ts +23 -0
  1126. package/src/chat/runtime/ChatChannelLifecycle.ts +169 -0
  1127. package/src/chat/runtime/ChatHistoryStore.ts +289 -0
  1128. package/src/chat/runtime/ChatIngressStore.ts +68 -0
  1129. package/src/chat/runtime/ChatMetaStore.ts +186 -0
  1130. package/src/chat/runtime/ChatPluginActionRegistry.ts +367 -0
  1131. package/src/chat/runtime/ChatPluginActions.ts +5 -0
  1132. package/src/chat/runtime/ChatPluginSystem.ts +70 -0
  1133. package/src/chat/runtime/ChatPromptAssets.ts +32 -0
  1134. package/src/chat/runtime/ChatQueue.ts +77 -0
  1135. package/src/chat/runtime/ChatQueueReplyDispatch.ts +191 -0
  1136. package/src/chat/runtime/ChatQueueStore.ts +185 -0
  1137. package/src/chat/runtime/ChatQueueWorker.ts +485 -0
  1138. package/src/chat/runtime/ChatQueueWorkerSupport.ts +137 -0
  1139. package/src/chat/runtime/ChatSendActionInput.ts +255 -0
  1140. package/src/chat/runtime/ChatSendMetadata.ts +170 -0
  1141. package/src/chat/runtime/ChatSendRegistry.ts +43 -0
  1142. package/src/chat/runtime/ChatSession.ts +156 -0
  1143. package/src/chat/runtime/ChatSessionContextComposer.ts +106 -0
  1144. package/src/chat/runtime/ChatSessionDelete.ts +95 -0
  1145. package/src/chat/runtime/ChatSessionTypes.ts +32 -0
  1146. package/src/chat/runtime/ChatkeySend.ts +187 -0
  1147. package/src/chat/runtime/DirectDispatchParser.ts +158 -0
  1148. package/src/chat/runtime/EnqueueDispatch.ts +49 -0
  1149. package/src/chat/runtime/InboundAugment.ts +63 -0
  1150. package/src/chat/runtime/PluginDispatch.ts +89 -0
  1151. package/src/chat/runtime/PluginPoints.ts +78 -0
  1152. package/src/chat/runtime/QueuedUserMessage.ts +43 -0
  1153. package/src/chat/runtime/ReplyContextFormatter.ts +85 -0
  1154. package/src/chat/runtime/ReplyDispatch.ts +78 -0
  1155. package/src/chat/runtime/SystemPrompt.ts +84 -0
  1156. package/src/chat/types/BotInfo.ts +101 -0
  1157. package/src/chat/types/ChannelAccount.ts +232 -0
  1158. package/src/chat/types/ChannelConfiguration.ts +161 -0
  1159. package/src/chat/types/ChannelContext.ts +110 -0
  1160. package/src/chat/types/ChannelStatus.ts +98 -0
  1161. package/src/chat/types/ChatCommand.ts +174 -0
  1162. package/src/chat/types/ChatDispatcher.ts +42 -0
  1163. package/src/chat/types/ChatHistory.ts +42 -0
  1164. package/src/chat/types/ChatMeta.ts +35 -0
  1165. package/src/chat/types/ChatPlugin.ts +251 -0
  1166. package/src/chat/types/ChatPluginActionPayload.ts +165 -0
  1167. package/src/chat/types/ChatPromptContext.ts +139 -0
  1168. package/src/chat/types/ChatQueue.ts +41 -0
  1169. package/src/chat/types/ChatQueueWorker.ts +25 -0
  1170. package/src/chat/types/ChatRuntime.ts +33 -0
  1171. package/src/chat/types/DirectDispatch.ts +133 -0
  1172. package/src/chat/types/FeishuAttachment.ts +50 -0
  1173. package/src/chat/types/FeishuInboundAttachment.ts +138 -0
  1174. package/src/chat/types/FeishuPost.ts +338 -0
  1175. package/src/chat/types/QqInboundDedupe.ts +12 -0
  1176. package/src/chat/types/QqVoice.ts +126 -0
  1177. package/src/chat/types/ReplyContext.ts +49 -0
  1178. package/src/contact/Action.ts +316 -0
  1179. package/src/contact/ContactPlugin.ts +503 -0
  1180. package/src/contact/Index.ts +8 -0
  1181. package/src/contact/PROMPT.ts +9 -0
  1182. package/src/contact/PROMPT.ts.txt +25 -0
  1183. package/src/contact/runtime/ApproveCallback.ts +97 -0
  1184. package/src/contact/runtime/ChatRuntime.ts +83 -0
  1185. package/src/contact/runtime/ContactPayload.ts +26 -0
  1186. package/src/contact/runtime/ContactPromptAssets.ts +14 -0
  1187. package/src/contact/runtime/ContactStore.ts +299 -0
  1188. package/src/contact/runtime/EndpointNotice.ts +125 -0
  1189. package/src/contact/runtime/EndpointResolver.ts +146 -0
  1190. package/src/contact/runtime/InboxStore.ts +178 -0
  1191. package/src/contact/runtime/LinkApproval.ts +387 -0
  1192. package/src/contact/runtime/LinkCode.ts +70 -0
  1193. package/src/contact/runtime/LinkStore.ts +50 -0
  1194. package/src/contact/runtime/Paths.ts +139 -0
  1195. package/src/contact/runtime/RemoteClient.ts +158 -0
  1196. package/src/contact/runtime/ShareBundle.ts +286 -0
  1197. package/src/contact/runtime/SystemProvider.ts +15 -0
  1198. package/src/contact/runtime/Token.ts +40 -0
  1199. package/src/contact/types/Contact.ts +82 -0
  1200. package/src/contact/types/ContactApproval.ts +150 -0
  1201. package/src/contact/types/ContactChat.ts +47 -0
  1202. package/src/contact/types/ContactCheck.ts +67 -0
  1203. package/src/contact/types/ContactCommand.ts +98 -0
  1204. package/src/contact/types/ContactEndpoint.ts +16 -0
  1205. package/src/contact/types/ContactLink.ts +169 -0
  1206. package/src/contact/types/ContactShare.ts +172 -0
  1207. package/src/index.ts +64 -0
  1208. package/src/memory/Action.ts +147 -0
  1209. package/src/memory/Index.ts +9 -0
  1210. package/src/memory/MemoryPlugin.ts +270 -0
  1211. package/src/memory/runtime/Flush.ts +83 -0
  1212. package/src/memory/runtime/Search.ts +330 -0
  1213. package/src/memory/runtime/Store.ts +198 -0
  1214. package/src/memory/runtime/SystemProvider.ts +145 -0
  1215. package/src/memory/runtime/Writer.ts +173 -0
  1216. package/src/memory/types/Memory.ts +284 -0
  1217. package/src/shell/Index.ts +9 -0
  1218. package/src/shell/ShellPlugin.ts +199 -0
  1219. package/src/shell/ShellRuntimeTypes.ts +94 -0
  1220. package/src/shell/runtime/Paths.ts +28 -0
  1221. package/src/shell/runtime/ShellActionResponse.ts +135 -0
  1222. package/src/shell/runtime/ShellActionRuntime.ts +545 -0
  1223. package/src/shell/runtime/ShellActionRuntimeSupport.ts +386 -0
  1224. package/src/shell/runtime/ShellProcessEvents.ts +65 -0
  1225. package/src/shell/runtime/ShellRuntimeEnvironment.ts +67 -0
  1226. package/src/skill/Action.ts +159 -0
  1227. package/src/skill/Command.ts +98 -0
  1228. package/src/skill/Config.ts +51 -0
  1229. package/src/skill/PROMPT.ts +9 -0
  1230. package/src/skill/PROMPT.ts.txt +10 -0
  1231. package/src/skill/Plugin.ts +347 -0
  1232. package/src/skill/SkillPromptAssets.ts +14 -0
  1233. package/src/skill/runtime/Discovery.ts +141 -0
  1234. package/src/skill/runtime/Frontmatter.ts +17 -0
  1235. package/src/skill/runtime/Paths.ts +130 -0
  1236. package/src/skill/runtime/Prompt.ts +67 -0
  1237. package/src/skill/runtime/Store.ts +95 -0
  1238. package/src/skill/runtime/SystemProvider.ts +52 -0
  1239. package/src/skill/runtime/Types.ts +22 -0
  1240. package/src/skill/runtime/Utils.ts +28 -0
  1241. package/src/skill/types/ClaudeSkill.ts +64 -0
  1242. package/src/skill/types/SkillCommand.ts +90 -0
  1243. package/src/skill/types/SkillPlugin.ts +107 -0
  1244. package/src/skill/types/SkillRoot.ts +49 -0
  1245. package/src/task/Action.ts +491 -0
  1246. package/src/task/Index.ts +8 -0
  1247. package/src/task/PROMPT.ts +9 -0
  1248. package/src/task/PROMPT.ts.txt +237 -0
  1249. package/src/task/Scheduler.ts +245 -0
  1250. package/src/task/TaskPlugin.ts +167 -0
  1251. package/src/task/runtime/CronTrigger.ts +110 -0
  1252. package/src/task/runtime/Frontmatter.ts +24 -0
  1253. package/src/task/runtime/Model.ts +347 -0
  1254. package/src/task/runtime/Paths.ts +116 -0
  1255. package/src/task/runtime/Runner.ts +519 -0
  1256. package/src/task/runtime/Store.ts +253 -0
  1257. package/src/task/runtime/TaskActionExecution.ts +276 -0
  1258. package/src/task/runtime/TaskActionInput.ts +281 -0
  1259. package/src/task/runtime/TaskPluginActionRegistry.ts +214 -0
  1260. package/src/task/runtime/TaskPluginActions.ts +5 -0
  1261. package/src/task/runtime/TaskPluginSystem.ts +8 -0
  1262. package/src/task/runtime/TaskPromptAssets.ts +14 -0
  1263. package/src/task/runtime/TaskRunArtifacts.ts +493 -0
  1264. package/src/task/runtime/TaskRunChatDispatch.ts +81 -0
  1265. package/src/task/runtime/TaskRunnerProgress.ts +112 -0
  1266. package/src/task/runtime/TaskRunnerRound.ts +337 -0
  1267. package/src/task/runtime/TaskRunnerScript.ts +175 -0
  1268. package/src/task/runtime/TaskRunnerSession.ts +190 -0
  1269. package/src/task/runtime/TaskRunnerTypes.ts +199 -0
  1270. package/src/task/types/Cron.ts +16 -0
  1271. package/src/task/types/Task.ts +157 -0
  1272. package/src/task/types/TaskCommand.ts +165 -0
  1273. package/src/task/types/TaskPluginTypes.ts +55 -0
  1274. package/src/tts/Dependency.ts +473 -0
  1275. package/src/tts/Plugin.ts +518 -0
  1276. package/src/tts/PluginSupport.ts +85 -0
  1277. package/src/tts/runtime/Catalog.ts +97 -0
  1278. package/src/tts/runtime/DependencyInstaller.ts +436 -0
  1279. package/src/tts/runtime/Installer.ts +297 -0
  1280. package/src/tts/runtime/Paths.ts +39 -0
  1281. package/src/tts/runtime/Synthesizer.ts +480 -0
  1282. package/src/tts/types/Tts.ts +99 -0
  1283. package/src/tts/types/TtsPlugin.ts +164 -0
  1284. package/src/voice/Config.ts +135 -0
  1285. package/src/voice/Dependency.ts +329 -0
  1286. package/src/voice/InboundAugment.ts +59 -0
  1287. package/src/voice/ModelCatalog.ts +43 -0
  1288. package/src/voice/runtime/Catalog.ts +68 -0
  1289. package/src/voice/runtime/DependencyInstaller.ts +505 -0
  1290. package/src/voice/runtime/Installer.ts +324 -0
  1291. package/src/voice/runtime/Paths.ts +26 -0
  1292. package/src/voice/runtime/Transcriber.ts +467 -0
  1293. package/src/voice/types/Voice.ts +68 -0
  1294. package/src/voice/types/VoicePlugin.ts +194 -0
  1295. package/src/web/Dependency.ts +17 -0
  1296. package/src/web/PROMPT.agent-browser.ts +9 -0
  1297. package/src/web/PROMPT.agent-browser.ts.txt +17 -0
  1298. package/src/web/PROMPT.ts +9 -0
  1299. package/src/web/PROMPT.ts.txt +33 -0
  1300. package/src/web/PROMPT.web-access.ts +9 -0
  1301. package/src/web/PROMPT.web-access.ts.txt +13 -0
  1302. package/src/web/Plugin.ts +523 -0
  1303. package/src/web/WebPromptAssets.ts +26 -0
  1304. package/src/web/runtime/Config.ts +105 -0
  1305. package/src/web/runtime/Source.ts +257 -0
  1306. package/src/web/types/WebPlugin.ts +141 -0
  1307. package/src/workboard/Plugin.ts +94 -0
  1308. package/src/workboard/runtime/Collector.ts +79 -0
  1309. package/src/workboard/runtime/Normalizer.ts +213 -0
  1310. package/src/workboard/runtime/Store.ts +110 -0
  1311. package/src/workboard/types/Workboard.ts +158 -0
  1312. package/tsconfig.json +26 -0
@@ -0,0 +1,200 @@
1
+ import path from "node:path";
2
+ import fs from "node:fs";
3
+ import fsExtra from "fs-extra";
4
+ import { Readable } from "node:stream";
5
+ import { pipeline } from "node:stream/promises";
6
+ const HUGGINGFACE_HOST = "https://huggingface.co";
7
+ /**
8
+ * 判断模型在本地是否已安装。
9
+ *
10
+ * 关键点(中文)
11
+ * - 优先识别安装清单 `downcity.voice.install.json`。
12
+ * - 若无清单但目录非空,也视为已存在模型,避免重复下载。
13
+ */
14
+ export async function detectLocalVoiceModelInstallState(input) {
15
+ const modelDir = path.resolve(input.modelsRootDir, input.modelId);
16
+ const manifestPath = path.join(modelDir, "downcity.voice.install.json");
17
+ const hasManifest = await fsExtra.pathExists(manifestPath);
18
+ if (hasManifest) {
19
+ return {
20
+ modelDir,
21
+ installed: true,
22
+ source: "manifest",
23
+ };
24
+ }
25
+ const hasModelDir = await fsExtra.pathExists(modelDir);
26
+ if (!hasModelDir) {
27
+ return {
28
+ modelDir,
29
+ installed: false,
30
+ };
31
+ }
32
+ const entries = await fsExtra.readdir(modelDir).catch(() => []);
33
+ const hasPersistedFiles = entries.some((entry) => !String(entry).endsWith(".downloading"));
34
+ if (!hasPersistedFiles) {
35
+ return {
36
+ modelDir,
37
+ installed: false,
38
+ };
39
+ }
40
+ return {
41
+ modelDir,
42
+ installed: true,
43
+ source: "directory",
44
+ };
45
+ }
46
+ function encodePathSegments(input) {
47
+ return input
48
+ .split("/")
49
+ .map((segment) => encodeURIComponent(segment))
50
+ .join("/");
51
+ }
52
+ function buildAuthHeaders(token) {
53
+ const t = String(token || "").trim();
54
+ if (!t)
55
+ return undefined;
56
+ return { Authorization: `Bearer ${t}` };
57
+ }
58
+ function resolveSafeTargetPath(baseDir, relativePath) {
59
+ const normalized = relativePath.replace(/\\/g, "/");
60
+ const target = path.resolve(baseDir, normalized);
61
+ const base = path.resolve(baseDir);
62
+ if (target !== base && !target.startsWith(`${base}${path.sep}`)) {
63
+ throw new Error(`Unsafe file path from HuggingFace: ${relativePath}`);
64
+ }
65
+ return target;
66
+ }
67
+ async function readModelFiles(input) {
68
+ const repoUrlPath = encodePathSegments(input.repoId);
69
+ const metadataUrl = `${HUGGINGFACE_HOST}/api/models/${repoUrlPath}`;
70
+ const response = await fetch(metadataUrl, {
71
+ headers: {
72
+ Accept: "application/json",
73
+ ...(buildAuthHeaders(input.hfToken) || {}),
74
+ },
75
+ });
76
+ if (!response.ok) {
77
+ const responseText = await response.text().catch(() => "");
78
+ throw new Error(`Failed to fetch model metadata (${input.repoId}): HTTP ${response.status}${responseText ? ` ${responseText.slice(0, 300)}` : ""}`);
79
+ }
80
+ const payload = (await response.json());
81
+ const files = (Array.isArray(payload.siblings) ? payload.siblings : [])
82
+ .map((item) => String(item?.rfilename || "").trim())
83
+ .filter(Boolean)
84
+ .filter((item) => item !== ".gitattributes");
85
+ if (files.length === 0) {
86
+ throw new Error(`No downloadable files found in repo: ${input.repoId}`);
87
+ }
88
+ return files;
89
+ }
90
+ async function downloadModelFile(input) {
91
+ const repoPath = encodePathSegments(input.repoId);
92
+ const revision = encodeURIComponent(input.revision);
93
+ const filePath = encodePathSegments(input.filePath);
94
+ const url = `${HUGGINGFACE_HOST}/${repoPath}/resolve/${revision}/${filePath}?download=1`;
95
+ const response = await fetch(url, {
96
+ headers: {
97
+ ...(buildAuthHeaders(input.hfToken) || {}),
98
+ },
99
+ });
100
+ if (!response.ok) {
101
+ const responseText = await response.text().catch(() => "");
102
+ throw new Error(`Failed to download ${input.filePath}: HTTP ${response.status}${responseText ? ` ${responseText.slice(0, 300)}` : ""}`);
103
+ }
104
+ if (!response.body) {
105
+ throw new Error(`Empty response body for file: ${input.filePath}`);
106
+ }
107
+ const tempPath = `${input.targetPath}.downloading`;
108
+ await fsExtra.ensureDir(path.dirname(input.targetPath));
109
+ try {
110
+ const body = Readable.fromWeb(response.body);
111
+ await pipeline(body, fs.createWriteStream(tempPath));
112
+ await fsExtra.move(tempPath, input.targetPath, { overwrite: true });
113
+ }
114
+ catch (error) {
115
+ await fsExtra.remove(tempPath).catch(() => undefined);
116
+ throw error;
117
+ }
118
+ }
119
+ /**
120
+ * 安装指定 voice 模型到本地目录。
121
+ *
122
+ * 关键点(中文)
123
+ * - 使用 HTTP 文件级下载,不依赖 git-lfs。
124
+ * - 默认复用已有文件;`force=true` 时覆盖重下。
125
+ */
126
+ export async function installVoiceModelFromHuggingFace(input) {
127
+ const modelDir = path.resolve(input.modelsRootDir, input.model.id);
128
+ await fsExtra.ensureDir(modelDir);
129
+ const files = await readModelFiles({
130
+ repoId: input.model.huggingfaceRepo,
131
+ hfToken: input.hfToken,
132
+ });
133
+ input.onProgress?.({
134
+ stage: "discover",
135
+ totalFiles: files.length,
136
+ });
137
+ let downloadedFiles = 0;
138
+ let skippedFiles = 0;
139
+ const downloadedFilePaths = [];
140
+ const skippedFilePaths = [];
141
+ for (let i = 0; i < files.length; i += 1) {
142
+ const filePath = files[i];
143
+ const targetPath = resolveSafeTargetPath(modelDir, filePath);
144
+ const exists = await fsExtra.pathExists(targetPath);
145
+ if (exists && input.force !== true) {
146
+ skippedFiles += 1;
147
+ skippedFilePaths.push(filePath);
148
+ input.onProgress?.({
149
+ stage: "skip",
150
+ filePath,
151
+ index: i + 1,
152
+ totalFiles: files.length,
153
+ });
154
+ continue;
155
+ }
156
+ input.onProgress?.({
157
+ stage: "download_start",
158
+ filePath,
159
+ index: i + 1,
160
+ totalFiles: files.length,
161
+ });
162
+ await downloadModelFile({
163
+ repoId: input.model.huggingfaceRepo,
164
+ revision: input.model.revision,
165
+ filePath,
166
+ targetPath,
167
+ hfToken: input.hfToken,
168
+ });
169
+ downloadedFiles += 1;
170
+ downloadedFilePaths.push(filePath);
171
+ input.onProgress?.({
172
+ stage: "download_done",
173
+ filePath,
174
+ index: i + 1,
175
+ totalFiles: files.length,
176
+ });
177
+ }
178
+ await fsExtra.writeJson(path.join(modelDir, "downcity.voice.install.json"), {
179
+ modelId: input.model.id,
180
+ label: input.model.label,
181
+ repoId: input.model.huggingfaceRepo,
182
+ revision: input.model.revision,
183
+ installedAt: new Date().toISOString(),
184
+ downloadedFiles,
185
+ skippedFiles,
186
+ }, { spaces: 2 });
187
+ input.onProgress?.({
188
+ stage: "manifest",
189
+ });
190
+ return {
191
+ modelDir,
192
+ downloadedFiles,
193
+ skippedFiles,
194
+ downloadedFilePaths,
195
+ skippedFilePaths,
196
+ repoId: input.model.huggingfaceRepo,
197
+ revision: input.model.revision,
198
+ };
199
+ }
200
+ //# sourceMappingURL=Installer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Installer.js","sourceRoot":"","sources":["../../../src/voice/runtime/Installer.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,8 @@
1
+ /**
2
+ * 将相对路径解析为绝对路径;空值时回退默认目录。
3
+ */
4
+ export declare function resolveVoiceModelsRootDir(input: {
5
+ projectRoot: string;
6
+ modelsDir?: string;
7
+ }): string;
8
+ //# sourceMappingURL=Paths.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Paths.d.ts","sourceRoot":"","sources":["../../../src/voice/runtime/Paths.ts"],"names":[],"mappings":"AAaA;;GAEG;AACH,wBAAgB,yBAAyB,CAAC,KAAK,EAAE;IAC/C,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,MAAM,CAMT"}
@@ -0,0 +1,26 @@
1
+ import path from "node:path";
2
+ import os from "node:os";
3
+ function expandHomePath(inputPath) {
4
+ const raw = String(inputPath || "").trim();
5
+ if (!raw)
6
+ return raw;
7
+ if (raw === "~")
8
+ return os.homedir();
9
+ if (raw.startsWith("~/")) {
10
+ return path.join(os.homedir(), raw.slice(2));
11
+ }
12
+ return raw;
13
+ }
14
+ /**
15
+ * 将相对路径解析为绝对路径;空值时回退默认目录。
16
+ */
17
+ export function resolveVoiceModelsRootDir(input) {
18
+ const fallback = path.join(os.homedir(), ".downcity", "models", "voice");
19
+ const raw = expandHomePath(String(input.modelsDir || fallback).trim());
20
+ if (!raw)
21
+ return path.resolve(fallback);
22
+ if (path.isAbsolute(raw))
23
+ return path.resolve(raw);
24
+ return path.resolve(input.projectRoot, raw);
25
+ }
26
+ //# sourceMappingURL=Paths.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Paths.js","sourceRoot":"","sources":["../../../src/voice/runtime/Paths.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,EAAE,MAAM,SAAS,CAAC;AAEzB,SAAS,cAAc,CAAC,SAAiB;IACvC,MAAM,GAAG,GAAG,MAAM,CAAC,SAAS,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC;IAC3C,IAAI,CAAC,GAAG;QAAE,OAAO,GAAG,CAAC;IACrB,IAAI,GAAG,KAAK,GAAG;QAAE,OAAO,EAAE,CAAC,OAAO,EAAE,CAAC;IACrC,IAAI,GAAG,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC;QACzB,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,OAAO,EAAE,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;IAC/C,CAAC;IACD,OAAO,GAAG,CAAC;AACb,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,yBAAyB,CAAC,KAGzC;IACC,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,OAAO,EAAE,EAAE,WAAW,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC;IACzE,MAAM,GAAG,GAAG,cAAc,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,IAAI,QAAQ,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC;IACvE,IAAI,CAAC,GAAG;QAAE,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;IACxC,IAAI,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC;QAAE,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;IACnD,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,WAAW,EAAE,GAAG,CAAC,CAAC;AAC9C,CAAC"}
@@ -0,0 +1,57 @@
1
+ import type { VoiceModelId, VoiceProvider } from "../../voice/types/Voice.js";
2
+ import type { PluginCommandContext } from "@downcity/agent/internal/plugin/types/Plugin.js";
3
+ /**
4
+ * Voice 转写输入参数。
5
+ */
6
+ export interface VoiceTranscribeInput {
7
+ /**
8
+ * 运行时上下文(用于读取配置/根目录/日志)。
9
+ */
10
+ context: PluginCommandContext;
11
+ /**
12
+ * 待转写音频路径(相对项目根目录或绝对路径)。
13
+ */
14
+ audioPath: string;
15
+ /**
16
+ * 语言提示(可选)。
17
+ */
18
+ language?: string;
19
+ }
20
+ /**
21
+ * Voice 转写输出结果。
22
+ */
23
+ export interface VoiceTranscribeResult {
24
+ /**
25
+ * 转写文本。
26
+ */
27
+ text: string;
28
+ /**
29
+ * 归一化后的音频绝对路径。
30
+ */
31
+ audioPath: string;
32
+ /**
33
+ * 本次使用的模型 ID。
34
+ */
35
+ modelId: VoiceModelId;
36
+ /**
37
+ * 本次使用的 provider。
38
+ */
39
+ provider: VoiceProvider;
40
+ /**
41
+ * 本次转写耗时(毫秒)。
42
+ */
43
+ elapsedMs: number;
44
+ /**
45
+ * 实际执行器标识。
46
+ */
47
+ runner: "funasr" | "transformers-whisper" | "command";
48
+ }
49
+ /**
50
+ * 执行 ASR 音频转写。
51
+ *
52
+ * 关键点(中文)
53
+ * - 该函数是 ASR plugin 对 chat 等 service 暴露的核心能力。
54
+ * - 内置 runner 失败时会返回清晰报错,调用方可降级为附件流程。
55
+ */
56
+ export declare function transcribeVoiceAudio(input: VoiceTranscribeInput): Promise<VoiceTranscribeResult>;
57
+ //# sourceMappingURL=Transcriber.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Transcriber.d.ts","sourceRoot":"","sources":["../../../src/voice/runtime/Transcriber.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,YAAY,EACZ,aAAa,EAEd,MAAM,wBAAwB,CAAC;AAGhC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,iDAAiD,CAAC;AAM5F;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC;;OAEG;IACH,OAAO,EAAE,oBAAoB,CAAC;IAC9B;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,OAAO,EAAE,YAAY,CAAC;IACtB;;OAEG;IACH,QAAQ,EAAE,aAAa,CAAC;IACxB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,MAAM,EAAE,QAAQ,GAAG,sBAAsB,GAAG,SAAS,CAAC;CACvD;AAuTD;;;;;;GAMG;AACH,wBAAsB,oBAAoB,CACxC,KAAK,EAAE,oBAAoB,GAC1B,OAAO,CAAC,qBAAqB,CAAC,CAmFhC"}
@@ -0,0 +1,329 @@
1
+ import path from "node:path";
2
+ import { exec as execWithShell, execFile as execFileCb } from "node:child_process";
3
+ import { promisify } from "node:util";
4
+ import fs from "fs-extra";
5
+ import { resolveVoiceModelsRootDir } from "./Paths.js";
6
+ const execShellAsync = promisify(execWithShell);
7
+ const execFileAsync = promisify(execFileCb);
8
+ const DEFAULT_TRANSCRIBE_TIMEOUT_MS = 120_000;
9
+ function normalizeLanguage(input) {
10
+ const text = String(input || "").trim();
11
+ return text || "zh";
12
+ }
13
+ function normalizeTimeoutMs(value) {
14
+ if (!Number.isFinite(value))
15
+ return DEFAULT_TRANSCRIBE_TIMEOUT_MS;
16
+ const ms = Number(value);
17
+ if (ms < 1_000)
18
+ return 1_000;
19
+ if (ms > 600_000)
20
+ return 600_000;
21
+ return Math.floor(ms);
22
+ }
23
+ function normalizePythonBin(value) {
24
+ const text = String(value || "").trim();
25
+ return text || "python3";
26
+ }
27
+ function normalizeStrategy(strategy) {
28
+ if (strategy === "funasr")
29
+ return "funasr";
30
+ if (strategy === "transformers-whisper")
31
+ return "transformers-whisper";
32
+ if (strategy === "command")
33
+ return "command";
34
+ return "auto";
35
+ }
36
+ function toAbsoluteAudioPath(context, input) {
37
+ const raw = String(input || "").trim();
38
+ if (!raw) {
39
+ throw new Error("voice transcribe requires audioPath");
40
+ }
41
+ if (path.isAbsolute(raw))
42
+ return path.resolve(raw);
43
+ return path.resolve(context.rootPath, raw);
44
+ }
45
+ function pickLastNonEmptyLine(value) {
46
+ const lines = String(value || "")
47
+ .split(/\r?\n/)
48
+ .map((line) => line.trim())
49
+ .filter(Boolean);
50
+ return lines.length > 0 ? lines[lines.length - 1] : "";
51
+ }
52
+ function shellEscapeSingle(value) {
53
+ return `'${String(value).replace(/'/g, `'"'"'`)}'`;
54
+ }
55
+ /**
56
+ * 为 python 执行构建环境变量。
57
+ *
58
+ * 关键点(中文)
59
+ * - 当 `pythonBin` 指向 venv 内解释器时,把其 `bin` 目录前置到 PATH,
60
+ * 以便 python 子进程内调用 `pip`(FunASR 远程代码会用到)能正确命中同一 venv。
61
+ */
62
+ function buildPythonExecEnv(pythonBin) {
63
+ const env = { ...process.env };
64
+ const raw = String(pythonBin || "").trim();
65
+ if (!raw || (!raw.includes("/") && !raw.includes("\\"))) {
66
+ return env;
67
+ }
68
+ const pythonDir = path.dirname(path.resolve(raw));
69
+ const currentPath = String(env.PATH || "");
70
+ const segments = currentPath
71
+ .split(path.delimiter)
72
+ .map((item) => item.trim())
73
+ .filter(Boolean);
74
+ if (!segments.includes(pythonDir)) {
75
+ env.PATH = [pythonDir, ...segments].join(path.delimiter);
76
+ }
77
+ return env;
78
+ }
79
+ function renderCommandTemplate(template, values) {
80
+ return template.replace(/\{(audioPath|modelDir|modelId|language)\}/g, (_, key) => {
81
+ const value = values[key] || "";
82
+ return shellEscapeSingle(value);
83
+ });
84
+ }
85
+ async function runCustomCommand(params) {
86
+ const command = renderCommandTemplate(params.template, params.values);
87
+ const { stdout, stderr } = await execShellAsync(command, {
88
+ timeout: params.timeoutMs,
89
+ maxBuffer: 8 * 1024 * 1024,
90
+ });
91
+ const text = pickLastNonEmptyLine(String(stdout || ""));
92
+ if (text)
93
+ return text;
94
+ const err = pickLastNonEmptyLine(String(stderr || ""));
95
+ if (err) {
96
+ throw new Error(`voice custom command produced no transcript: ${err}`);
97
+ }
98
+ throw new Error("voice custom command produced empty transcript");
99
+ }
100
+ async function runPythonInline(params) {
101
+ let stdout = "";
102
+ let stderr = "";
103
+ try {
104
+ const output = await execFileAsync(params.pythonBin, ["-c", params.script, ...params.args], {
105
+ timeout: params.timeoutMs,
106
+ maxBuffer: 8 * 1024 * 1024,
107
+ env: buildPythonExecEnv(params.pythonBin),
108
+ });
109
+ stdout = String(output.stdout || "");
110
+ stderr = String(output.stderr || "");
111
+ }
112
+ catch (error) {
113
+ const errorLike = error;
114
+ stdout = String(errorLike.stdout || "");
115
+ stderr = String(errorLike.stderr || "");
116
+ const err = pickLastNonEmptyLine(stderr) || pickLastNonEmptyLine(stdout);
117
+ if (err) {
118
+ throw new Error(`python runner failed: ${err}`);
119
+ }
120
+ throw new Error(`python runner failed: ${String(errorLike.message || error)}`);
121
+ }
122
+ const text = pickLastNonEmptyLine(stdout);
123
+ if (text)
124
+ return text;
125
+ const err = pickLastNonEmptyLine(stderr);
126
+ if (err) {
127
+ throw new Error(`python runner produced no transcript: ${err}`);
128
+ }
129
+ throw new Error("python runner produced empty transcript");
130
+ }
131
+ const FUNASR_INLINE_SCRIPT = [
132
+ "from funasr import AutoModel",
133
+ "import sys",
134
+ "model_dir = sys.argv[1]",
135
+ "audio_path = sys.argv[2]",
136
+ "model = AutoModel(model=model_dir, trust_remote_code=True, disable_update=True)",
137
+ "result = model.generate(input=audio_path)",
138
+ "text = ''",
139
+ "if isinstance(result, list) and len(result) > 0:",
140
+ " first = result[0]",
141
+ " if isinstance(first, dict):",
142
+ " text = str(first.get('text') or '')",
143
+ "elif isinstance(result, dict):",
144
+ " text = str(result.get('text') or '')",
145
+ "print(text.strip())",
146
+ ].join("\n");
147
+ const TRANSFORMERS_WHISPER_INLINE_SCRIPT = [
148
+ "from transformers import pipeline",
149
+ "import sys",
150
+ "model_dir = sys.argv[1]",
151
+ "audio_path = sys.argv[2]",
152
+ "language = sys.argv[3] if len(sys.argv) > 3 else ''",
153
+ "pipe = pipeline('automatic-speech-recognition', model=model_dir)",
154
+ "kwargs = {}",
155
+ "if language:",
156
+ " kwargs['generate_kwargs'] = {'language': language}",
157
+ "result = pipe(audio_path, **kwargs)",
158
+ "text = ''",
159
+ "if isinstance(result, dict):",
160
+ " text = str(result.get('text') or '')",
161
+ "else:",
162
+ " text = str(result)",
163
+ "print(text.strip())",
164
+ ].join("\n");
165
+ async function runFunasrRunner(params) {
166
+ return runPythonInline({
167
+ pythonBin: params.pythonBin,
168
+ script: FUNASR_INLINE_SCRIPT,
169
+ args: [params.modelDir, params.audioPath],
170
+ timeoutMs: params.timeoutMs,
171
+ });
172
+ }
173
+ async function runTransformersWhisperRunner(params) {
174
+ return runPythonInline({
175
+ pythonBin: params.pythonBin,
176
+ script: TRANSFORMERS_WHISPER_INLINE_SCRIPT,
177
+ args: [params.modelDir, params.audioPath, params.language],
178
+ timeoutMs: params.timeoutMs,
179
+ });
180
+ }
181
+ async function resolveVoiceConfig(input) {
182
+ const pluginConfig = input.context.config.plugins?.asr &&
183
+ typeof input.context.config.plugins.asr === "object" &&
184
+ !Array.isArray(input.context.config.plugins.asr)
185
+ ? input.context.config.plugins.asr
186
+ : null;
187
+ const enabled = pluginConfig && pluginConfig.enabled === true;
188
+ if (!enabled) {
189
+ throw new Error("ASR plugin is disabled. Run `city asr on` first.");
190
+ }
191
+ const provider = String(pluginConfig?.provider || "local");
192
+ if (!["local", "command"].includes(provider)) {
193
+ throw new Error(`Unsupported asr provider: ${provider}`);
194
+ }
195
+ const modelId = String(pluginConfig?.modelId || "SenseVoiceSmall").trim() || "SenseVoiceSmall";
196
+ if (!modelId && provider === "local") {
197
+ throw new Error("ASR active model is not configured. Run `city asr use <modelId>`.");
198
+ }
199
+ const modelsRootDir = resolveVoiceModelsRootDir({
200
+ projectRoot: input.context.rootPath,
201
+ modelsDir: String(pluginConfig?.modelsDir || "").trim(),
202
+ });
203
+ const modelDir = path.resolve(modelsRootDir, modelId);
204
+ if (provider === "local") {
205
+ const modelDirExists = await fs.pathExists(modelDir);
206
+ if (!modelDirExists) {
207
+ throw new Error(`Voice model directory does not exist: ${modelDir}`);
208
+ }
209
+ }
210
+ const audioPath = toAbsoluteAudioPath(input.context, input.audioPath);
211
+ const audioExists = await fs.pathExists(audioPath);
212
+ if (!audioExists) {
213
+ throw new Error(`Audio file does not exist: ${audioPath}`);
214
+ }
215
+ const commandTemplate = String(pluginConfig?.command || "").trim();
216
+ const strategy = normalizeStrategy(pluginConfig?.strategy ||
217
+ (provider === "command" ? "command" : "auto"));
218
+ return {
219
+ config: pluginConfig || {
220
+ provider: "local",
221
+ },
222
+ modelId: modelId,
223
+ provider,
224
+ modelDir,
225
+ audioPath,
226
+ timeoutMs: normalizeTimeoutMs(pluginConfig?.timeoutMs),
227
+ language: normalizeLanguage(input.language ||
228
+ String(pluginConfig?.language || "")),
229
+ pythonBin: normalizePythonBin(String(pluginConfig?.pythonBin || "")),
230
+ commandTemplate: commandTemplate || undefined,
231
+ strategy,
232
+ };
233
+ }
234
+ function resolveAutoRunnerOrder(modelId) {
235
+ if (modelId === "whisper-large-v3-turbo") {
236
+ return ["transformers-whisper", "funasr"];
237
+ }
238
+ return ["funasr", "transformers-whisper"];
239
+ }
240
+ /**
241
+ * 执行 ASR 音频转写。
242
+ *
243
+ * 关键点(中文)
244
+ * - 该函数是 ASR plugin 对 chat 等 service 暴露的核心能力。
245
+ * - 内置 runner 失败时会返回清晰报错,调用方可降级为附件流程。
246
+ */
247
+ export async function transcribeVoiceAudio(input) {
248
+ const startedAt = Date.now();
249
+ const resolved = await resolveVoiceConfig(input);
250
+ const runnerFailures = [];
251
+ const tryRunner = async (runner) => {
252
+ try {
253
+ let text = "";
254
+ if (runner === "command") {
255
+ const template = String(resolved.commandTemplate || "").trim();
256
+ if (!template) {
257
+ throw new Error("ASR transcribe strategy=command requires plugins.asr.command");
258
+ }
259
+ text = await runCustomCommand({
260
+ template,
261
+ timeoutMs: resolved.timeoutMs,
262
+ values: {
263
+ audioPath: resolved.audioPath,
264
+ modelDir: resolved.modelDir,
265
+ modelId: resolved.modelId,
266
+ language: resolved.language,
267
+ },
268
+ });
269
+ }
270
+ else if (runner === "funasr") {
271
+ text = await runFunasrRunner({
272
+ pythonBin: resolved.pythonBin,
273
+ modelDir: resolved.modelDir,
274
+ audioPath: resolved.audioPath,
275
+ timeoutMs: resolved.timeoutMs,
276
+ });
277
+ }
278
+ else {
279
+ text = await runTransformersWhisperRunner({
280
+ pythonBin: resolved.pythonBin,
281
+ modelDir: resolved.modelDir,
282
+ audioPath: resolved.audioPath,
283
+ language: resolved.language,
284
+ timeoutMs: resolved.timeoutMs,
285
+ });
286
+ }
287
+ const normalized = String(text || "").trim();
288
+ if (!normalized) {
289
+ throw new Error("transcript is empty");
290
+ }
291
+ return {
292
+ text: normalized,
293
+ audioPath: resolved.audioPath,
294
+ modelId: resolved.modelId,
295
+ provider: resolved.provider,
296
+ elapsedMs: Date.now() - startedAt,
297
+ runner,
298
+ };
299
+ }
300
+ catch (error) {
301
+ runnerFailures.push(`${runner}: ${String(error)}`);
302
+ return null;
303
+ }
304
+ };
305
+ if (resolved.strategy === "command") {
306
+ const result = await tryRunner("command");
307
+ if (result)
308
+ return result;
309
+ }
310
+ else if (resolved.strategy === "funasr") {
311
+ const result = await tryRunner("funasr");
312
+ if (result)
313
+ return result;
314
+ }
315
+ else if (resolved.strategy === "transformers-whisper") {
316
+ const result = await tryRunner("transformers-whisper");
317
+ if (result)
318
+ return result;
319
+ }
320
+ else {
321
+ for (const runner of resolveAutoRunnerOrder(resolved.modelId)) {
322
+ const result = await tryRunner(runner);
323
+ if (result)
324
+ return result;
325
+ }
326
+ }
327
+ throw new Error(`Voice transcription failed for model "${resolved.modelId}". ${runnerFailures.join(" | ")}`);
328
+ }
329
+ //# sourceMappingURL=Transcriber.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Transcriber.js","sourceRoot":"","sources":["../../../src/voice/runtime/Transcriber.ts"],"names":[],"mappings":"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"}