@ducci/jarvis 1.0.85 → 1.0.86

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ducci/jarvis",
3
- "version": "1.0.85",
3
+ "version": "1.0.86",
4
4
  "description": "A fully automated agent system that lives on a server.",
5
5
  "main": "./src/index.js",
6
6
  "type": "module",
@@ -804,7 +804,7 @@ export async function startTelegramChannel(config) {
804
804
  transcription = await speechToText(audioBuffer, config);
805
805
  } catch (e) {
806
806
  console.error(`[telegram] STT error chat_id=${chatId}: ${e.message}`);
807
- await ctx.reply('Sorry, could not transcribe the voice message.').catch(() => {});
807
+ await ctx.reply(`Voice transcription failed: ${e.message}`).catch(() => {});
808
808
  return;
809
809
  }
810
810