halbot 1990.1.70 → 1990.1.71

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,7 +1,7 @@
1
1
  {
2
2
  "name": "halbot",
3
3
  "description": "Just another ChatGPT/Bing Chat Telegram bob, which is simple design, easy to use, extendable and fun.",
4
- "version": "1990.1.70",
4
+ "version": "1990.1.71",
5
5
  "private": false,
6
6
  "homepage": "https://github.com/Leask/halbot",
7
7
  "type": "module",
@@ -63,10 +63,6 @@ const action = async (ctx, next) => {
63
63
  await ok();
64
64
  // ctx.responses = msgs; // save responses-to-user for next middleware
65
65
  ctx.tts = packMsg({ tts: true });
66
- // match for session rendering
67
- ctx.selectedAi.map(n => ['response', 'responseRendered'].map(k =>
68
- ctx.session.latest[n][k] = ctx.session.latest[n][k].replaceAll('`', '')
69
- ));
70
66
  await next();
71
67
  };
72
68