lunel-cli 0.1.67 → 0.1.68

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/ai/codex.js +4 -1
  2. package/package.json +1 -1
package/dist/ai/codex.js CHANGED
@@ -888,7 +888,10 @@ export class CodexProvider {
888
888
  if (message.includes("not materialized") || message.includes("not yet materialized")) {
889
889
  return false;
890
890
  }
891
- return message.includes("thread not found") || message.includes("unknown thread");
891
+ return (message.includes("thread not found")
892
+ || message.includes("unknown thread")
893
+ || message.includes("no rollout found for thread id")
894
+ || message.includes("no rollout found"));
892
895
  }
893
896
  async ensurePromptSessionReady(session) {
894
897
  const threadId = this.getTransportThreadId(session);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lunel-cli",
3
- "version": "0.1.67",
3
+ "version": "0.1.68",
4
4
  "author": [
5
5
  {
6
6
  "name": "Soham Bharambe",