lunel-cli 0.1.66 → 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.
- package/dist/ai/codex.js +4 -1
- 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")
|
|
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);
|