@oxecli/oxe 1.0.39 → 1.0.41

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 (2) hide show
  1. package/dist/cli.js +3 -0
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -419,6 +419,9 @@ export class CLI {
419
419
  }
420
420
  if (err?.message === "interrupt") {
421
421
  const wasActive = queryStarted || engine.inQuery;
422
+ if (wasActive && !engine.queryHasOutput) {
423
+ process.stdout.write(aiMarkdown("What else can I help with?") + "\n\n");
424
+ }
422
425
  engine.inQuery = false;
423
426
  // Drop the pending user message/story entry that was never run.
424
427
  if (this.inputItems.length && this.inputItems[this.inputItems.length - 1]["role"] === "user") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxecli/oxe",
3
- "version": "1.0.39",
3
+ "version": "1.0.41",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },